Akhil Narayanan Nair home

Python - List Nested

================

list = [“hello”, 2.0, 5, [10, 20]]

print(list[3])

elt = list[3]

print(elt[0])

print(list[3][0])