Am trying to print elements of index 1
like 4994 2993 100 20.5
from my tuple but it print ('dan', '2993')
.
b = (("ben","4994"),("dan","2993"),("Hans",100),("Frank",20.5))
print(b[1])
Have searched on this site and none of the answer provided gives me clue to solve this.