Q:

Create a tuple with single item 50 using python programming

belongs to collection: Python Tuple Exercises

0

Create a tuple with single item 50

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Solution:

tuple1= (50, )
print(tuple1)

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Write a python program to unpack the following tup... >>
<< The given tuple is a nested tuple. write a Python ...