Python Program to Create a Tuple with Numbers

nTuple = 22,
print("Tuple Items = ", nTuple)
numTuple = (10, 20, 40, 60, 80, 100)
print("Tuple Items = ", numTuple)

OUTPUT:

Tuple Items =  (22,)
Tuple Items =  (10, 20, 40, 60, 80, 100)

Sharing Is Caring

Leave a Comment