# Author: James Tam # Version: June, 2014 # Feature: determines if user is an adult # (reacts differently in the adult vs. non-adult case) # Limitation: cannot handle non-numeric input age = int(input("How old are you: ")) if (age < 18): print("Not an adult") else: print("Adult") print("Tell me more about yourself")