I use this the following entry to enter a list of numbers, for example this list: 1 2 3 4 5 6
a=stdin.readline().strip().split()
If I give you print(a)
it shows me ['1','2','3','4','5','6']
, my question is if you can modify that entry in such a way that it shows me the list of integers ( [1,2,3,4,5,6]
) but not of strings, or simply not Will it be?