from random import * from turtle import * randint(0, 100) # doesn't do anything!! Function just RETURNS a value # functions that return don't necessarily do something active, # they give back a value # variable: placeholder for information # has a name and a value age = 50 print(age * 2) name = raw_input("What's your name? ") print("Hello, " + name) print(name * randint(0, 10)) col = raw_input("What's your favorite color? ") color(col) # if you want user input as a number, must call the int() function distance = int(raw_input("What's your favorite number? ")) forward(distance) print(distance) age = int(raw_input("What's your age? ")) print(age * 2) mainloop()