# get input from the interpreter prompt x = raw_input("what you wanna shoot? ") x = str(x) # cast to a string type print "...lets hug " + str(5) + x + "instead!" # print, casting the int -1 to a string (required) # define a function (aka a method) def hello_galexy(stars=20): # define with a parameter 'stars', setting it default to 20 if not specified stars = "40 billion, on the light side" print "*" * int(stars) # multiply the string by 20 # can call method from here, # or from the interpreter prompt if we first type 'from RAwwrrrr import *' hello_galexy() # call this method with default value print "galexy donne"