I'm new to python and trying to figure out how to iterate through a nested tuple.
here is a tuple:
x=((1,2,('a', 'b', (6,9,7)), 6,('$','@')))
I'm trying to iterate so I can print each value separately like:
1
2
a
b
6
9
7
6
$
@
Here is my code, please let me know what I'm doing wrong here:
x=((1,2,('a', 'b', (6,9,7)), 6,('$','@')))
f=0
for y in x:
print(x[f])
f = f+1