Qwerty
Qwerty
-----------------------------------------------------------------------------------
-----------------------------------------
#Welcome to the Cuber
def cube(number):
return number**3
def by_three(number):
if number % 3 == 0:
return True
else:
return False
print cube(3)
print by_three(3)
_____________________________________________________________________________
start_list = [5, 3, 1, 2, 4]
square_list = []
------------------------------------------------
________________---------------------__________--------------
if a % x ==0:
print a
_____________________________________________________________________________
def clinic():
print "You've just entered the clinic!"
print "Do you take the door on the left or the right?"
answer = raw_input("Type y or n and hit 'Enter'.").lower()
if answer == "y" :
print "This is the Verbal Abuse Room, you heap of parrot droppings!"
elif answer == "n":
print "Of course this is the Argument Room, I've told you that already!"
else:
print "You didn't pick yes or no! Try again."
clinic()
clinic()