user input in tuple in python code example
Example: python create tuple from input
t = input()
a = tuple(int(x) for x in t.split())
#view this tuple
print(a)
t = input()
a = tuple(int(x) for x in t.split())
#view this tuple
print(a)