美文网首页
Pythonista20190301

Pythonista20190301

作者: 7300T | 来源:发表于2019-03-01 07:57 被阅读1次
    Pythonista20190301
    cars = 100
    space_in_a_car = 3.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,'emty 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.'
    

    相关文章

      网友评论

          本文标题:Pythonista20190301

          本文链接:https://www.haomeiwen.com/subject/csrruqtx.html