I want to first convert strings of a list to integers and then add 1 to all elements, for example:
mylist = ["0", "1", "2"]
ints = [int(item) for item in mylist]
ints = ints+1
print(ints)
and then I want the output to be:
1, 2, 3
Not sure how I can do this, some help would be appreciated