0
What is the output of...
t = (23, âabcâ, 4.56, (2,3), âdefâ) t [1]
4 Answers
+ 1
Check answer to your previous question
0
t = (23, "abc", 4.56, (2,3), "def")
print(t[1])
0
The print() function. Required
t = (23, âabcâ, 4.56, (2,3), âdefâ) t [1]