3 lines
91 B
Python
3 lines
91 B
Python
#Create a tuple with different data types
|
|
tuplex = ("tuple", False, 3.2, 1)
|
|
print(tuplex) |