私はここでpythonの初心者です。私は「Learning Python the hard way」で学習してきましたが、 演習 4、追加クレジット、質問 1 で問題に直面しています。
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, "in each car."
に 4.0 を使用しましspace_in_a_car
たが、それは必要ですか? この場合、4 ではなく 4.0 が使用されるのはなぜですか?
みんなが理由を説明するのを手伝ってくれることを願っています。