ShriRam Changed status to publish August 18, 2023
tuplex = 5, 10, 15, 20, 25
print(tuplex)
tuplex = 5,
print(tuplex)
print(type(tuplex))
ShriRam Changed status to publish August 18, 2023
tuplex = 5, 10, 15, 20, 25
print(tuplex)
tuplex = 5,
print(tuplex)
print(type(tuplex))