Answer:
>>> s = "Hello"
>>> print(s[0])
H
mylist[0][0]
Step-by-step explanation:
String indexing in Python is zero-based: the first character in the string has index 0 , the next has index 1 , and so on
9.3m questions
12.0m answers