位置:首页 > 软件操作教程 > 编程开发 > Python > 问题详情

在python中2. 一个函数的例子

提问人:杨紫红发布时间:2020-11-18

每周生产X个罐子,计算出一年中每周位置总共生产的罐子。

def spaceship_building(cans):

     total_cans = 0

     for week in range(1, 53):

         total_cans = total_cans + cans

         print('Week %s = %s cans' % (week, total_cans))


继续查找其他问题的答案?

相关视频回答
回复(0)
返回顶部