Learn Python the Hard Way: if...else语句

#!/usr/bin/python
# -*- coding: utf-8 -*-

people = 30
cars = 40 
buses = 14

if cars > people:
    print "We should take the cars."
elif cars < people:
    print "We should not take the cars."
else:
    print "We can't decide."

if people > buses:
    print "Alright, let's just take the buses."
else:
    print "Fine, let's stay home then."

if 2 > 1:
    print "2 > 1 is true."





你可能感兴趣的:(Learn Python the Hard Way: if...else语句)