变量和命名
#笨方法学python_习题4
#定义变量
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_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,'in each car.')
##Tips:
- space_in_a_car的**_是下划线字符**
- 4.0是浮点数,也就是带小数点的数
- =的作用是为数据(数值、字符串等)取名,通常是将右边的值赋给左边的变量名
- ==的作用是检查左右两边的值是否相等
- 倒着检查代码