码迷,mamicode.com
首页 > 编程语言 > 详细

Python(53)_实现一个加法计数器

时间:2019-01-07 01:33:06      阅读:272      评论:0      收藏:0      [点我收藏+]

标签:print   png   strip   info   pre   strip()   span   python   输入   

#-*-coding:utf-8-*-

‘‘‘
实现一个加法计数器
  如5+7+9,进行分割再进行计算,将结果存入字典中dic = {"":"}
‘‘‘
dic = {}
content = input("请输入内容:").strip()
content_list = content.split(+)
#print(content_list)
sum = 0
for i in  content_list:
    sum = sum+int(i)  # int会自动去掉空格
#print(sum)
dic.setdefault("计算结果为:",sum)
print(dic)

技术分享图片

 

Python(53)_实现一个加法计数器

标签:print   png   strip   info   pre   strip()   span   python   输入   

原文地址:https://www.cnblogs.com/sunnybowen/p/10230966.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!