三段各跑一句
一件事,从头到尾分三段:
输入
一堆快递单
处理
按城市分堆
输出
每个城市几件
运行下面的 Python 3 程序,填写结果。
scores = [80, 90, 70] # 输入
total = sum(scores) # 处理
print(total // len(scores)) # 输出
一件事,从头到尾分三段:
输入
处理
输出
运行下面的 Python 3 程序,填写结果。
scores = [80, 90, 70] # 输入
total = sum(scores) # 处理
print(total // len(scores)) # 输出
全部评论