u_list = input("put numbers: right now: ")
List = u_list.split(",")
t = tuple(List)
print("Tuple: ",t)
print("list: ",List)
why do you need a comma in front of the variable: t variable: List? I mean the one where there is ,t - comma in front of the t .