Answers for "how to make a tuple"

3

pyhton tuple

#It's like a list, but unchangeable
tup = ("var1","var2","var3")
tup = (1,2,3)
#Error
Posted by: Guest on March-11-2020
0

how to make a tuple

thistuple = ("apple", "banana", "cherry")

print(thistuple)
Posted by: Guest on May-19-2021

Browse Popular Code Answers by Language