+ 1
t=(11, 5,7,2,2) t=str(t) print(t[2])
I couldn't understand this one
1 Answer
+ 5
Please do not put code in the title section. Put it into the description or link it.
Please tag "python", not "newbie".
t is converted to a string, t[2] gives the character at index 2.