Computer Science, asked by mitalibakle1301, 18 days ago

Write a Python program to create a tuple with numbers and print one item.​

Answers

Answered by rohansk575
3

Answer:

tuplex = 5, 10, 15, 20, 25

print(tuplex)

tuplex = 5,

print(tuplex)

Similar questions