python 输入一个数n,求n个数求乘或求和的实例

作者:aaakirito 时间:2022-06-06 01:44:36 

求和


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()

来源:https://blog.csdn.net/aaakirito/article/details/79306546

标签:python,求乘,求和
0
投稿

猜你喜欢

  • FrontPage2002简明教程四:网页超级链接

    2008-09-17 11:23:00
  • 浏览器调试动态js脚本的方法(图解)

    2023-07-06 22:51:08
  • Python实现从文件中加载数据的方法详解

    2022-05-28 12:41:31
  • python进程管理工具supervisor使用实例

    2022-08-24 13:47:03
  • 在Python3.74+PyCharm2020.1 x64中安装使用Kivy的详细教程

    2023-01-16 15:17:39
  • SQL Server实现全文搜索查询详解

    2024-01-23 05:19:13
  • Python创建字典的八种方式

    2021-02-05 20:43:18
  • 使用 MySQL Date/Time 类型

    2024-05-13 09:21:22
  • RSA加密解密算法 asp源码

    2009-08-28 13:10:00
  • Python超详细分步解析随机漫步

    2022-03-04 07:14:08
  • 用Eclipse写python程序

    2022-03-24 02:24:25
  • Django表单外键选项初始化的问题及解决方法

    2022-07-09 04:28:42
  • Python中实现一行拆多行和多行并一行的示例代码

    2021-05-20 12:32:26
  • SQL Server 2000里的数据类型

    2011-06-11 14:07:00
  • Python中functools模块的常用函数解析

    2022-08-12 08:10:50
  • Golang中 Slice的分析与使用源码解析

    2023-06-19 03:48:13
  • python保存字典和读取字典的实例代码

    2023-05-12 14:17:54
  • 总结python爬虫抓站的实用技巧

    2022-07-07 05:04:09
  • 有关将idea的系统配置文件移到其它盘激活失效的问题

    2022-02-16 09:33:37
  • Python+flask实现restful接口的示例详解

    2023-03-23 08:34:55
  • asp之家 网络编程 m.aspxhome.com