Learn Python The Hard Way(4)

    本节学习变量,在编程语言中,变量不可或缺。变量不仅是一个标识,还是对程序重要的描述,因此,在定义变量时要使用有确切含有的变量,最好不要使用诸如:aa、bcd……这种不能只管读懂其含有的变量。

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

cars = 100
space_in_a_car = 4.0
drivers = 30
passengers = 90
cars_not_driven = cars - drivers
cars_driven = drivers
carpool_capacity = cars_driven * space_in_a_car
average_passengers_per_car = passengers / cars_driven
print "There are", cars, "cars available."
print "There are only", drivers, "drivers available."
print "There will be", cars_not_driven, "empty cars today."
print "We can transport", carpool_capacity, "people today."
print "We have", passengers, "to carpool today."
print "We need to put about", average_passengers_per_car, "ineach car."

                                     Learn Python The Hard Way(4)_第1张图片    

你可能感兴趣的:(Learn Python The Hard Way(4))