python create tuple from input

28

t = input()
a = tuple(int(x) for x in t.split())
#view this tuple
print(a)

Comments

Submit
0 Comments