摘要: 【练习题1】实现一个整数加法计算器 如 content = input(">>> ") # 5+9 , 6+4 count=0 while 1: content=input('>>>') s1 = content.split('+') print(s1) count = 0 for i in s1: 阅读全文
posted @ 2023-10-31 15:17 python学习者0 阅读(151) 评论(0) 推荐(0)