redd 發表於 2016-9-19 15:01:45

if - elif - else

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 left or right and hit 'Enter'.").lower()
    if answer == "left" or answer == "l":
      print "This is the Verbal Abuse Room, you heap of parrot droppings!"
    elif answer == "right" or answer == "r":
      print "Of course this is the Argument Room, I've told you that already!"
    else:
      print "You didn't pick left or right! Try again."
      clinic()

clinic()

admin 發表於 2017-2-28 21:23:56

a = "h"
b = "k"

if a == "a":
    print("Yes!")
elif a == b:
    print("No!")
else:
    print("What?")
頁: [1]
查看完整版本: if - elif - else