6 lines
128 B
Python
6 lines
128 B
Python
|
#Create a tuple with numbers
|
||
|
tuplex = 5, 10, 15, 20, 25
|
||
|
print(tuplex)
|
||
|
#Create a tuple of one item
|
||
|
tuplex = 5,
|
||
|
print(tuplex)
|