python 输入一个数n,求n个数求乘或求和的实例
程序员文章站
2022-06-21 08:54:25
求和
try:
while true:
n=input()
s=1
for x in raw_input().split():
s=...
求和
try: while true: n=input() s=1 for x in raw_input().split(): s=s+int(x) print s except eoferror: exit()
求乘
try: while true: n=input() s=1 for x in raw_input().split(): s=s*int(x) print s except eoferror: exit()
以上这篇python 输入一个数n,求n个数求乘或求和的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
上一篇: python组合无重复三位数的实例
下一篇: python自动化生成IOS的图标