+ 1
Maybe the answer can be described like following ?
tlo=("123", "153", "53") print(tlo[1:])
4 Antworten
+ 2
print (tlo [1:]) states to print all the elements of the list from element with index 1 that is 153
0
The Output is 123?
0
Well, the output is ('153', '53') in my IDE, and that is my understanding to the answer of the question. And I'm not sure whether it's correct or not.
0
I think the codes display the split of the tuple, it intercepts the second and the third elements of the tuple.