0
Can you slice a tupule in python?
3/23/2020 10:09:48 AM
2 Answers
+1
"tupule" does not exists and. "Try it yourself" is available in sololearn
Christopher Martin yes you can. tup = (1, 2, 3, 4, 5) print(tup[0:2]) #(1, 2) is the output.
Send us a message