What I am looking to do
So what I want to do, is get a string from an input, and convert it into an int. Here is a bit of the code so you have a picture of what I am aiming for.
age = input('How old are you: ')
for i in range(age, 18):
print('I am', i, "years old")
I want to convert the string that I got from the input into an integer so I can use it in the i in range()... Is that possible?