how to read a string value as an integer in python? for eg if a=['1','2'] where 1 and 2 are characters. but these values are needed as integers for further operations like finding prime numbers between them
myList = list(map(int,input().split())); #it will typecast string to int while reading a list
print(myList, type(myList[1]))