Answers for "python tuple create tuple"

0

python tuple create tuple

--It is also possible to use the tuple() constructor to make a tuple.
thistuple = tuple(("apple", "banana", "cherry")) # note the double round-brackets

print(thistuple)
Posted by: Guest on September-24-2021

Python Answers by Framework

Browse Popular Code Answers by Language