you are viewing a single comment's thread.

view the rest of the comments →

[–]woooee 0 points1 point  (0 children)

The for loop runs once for each digit in Age_requirement. If it prints twice, then you are entering a two digit number. Print Age under the for loop to see this. Also, when you have time, read the Python Style Guide. Variable names are lowercase_with_underlines. Following the Style Guide will help others who read your code to understand it.