How to access nested tuple elements in Python

1 Answer

0 votes
tpl = ("python", [736, 837, 919, 202], (34, 56, 89))

print(tpl[0]) 
print(tpl[1]) 

print(tpl[1][0]) 
print(tpl[1][2]) 

print(tpl[2][0]) 
print(tpl[2][1]) 




'''
run:
 
python
[736, 837, 919, 202]
736
919
34
56

'''

 



answered Feb 10, 2020 by avibootz
...