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
1.6m questions
2.0m answers