text = "This is a pen. What is that?\nIt is an apple. Oh, I see." print (text[0]) print (text[1]) print (text[2]) print (text[3]) print (text[10:13]) print (text[:14]) print (text[15:]) print (text[-10:]) print (len (text[:14]))