20 Likes
['h', 'e', 'l', 'l', 'o']
Answered By
2 Likes
print(list(range(3)))
What gets printed?
names = ['Hasan', 'Balwant', 'Sean', 'Dia'] print(names[-1][-1])
What is the output of the following
l = [None] * 10 print(len(l))