PHP前端开发

如何用Python计算用户输入内容中的整数总和或数量?

百变鹏仔 5天前 #Python
文章标签 整数

python求解答:计算用户输入内容的整数

题目要求计算用户输入内容中整数(以个位数为单位)的总和或数量。

解决方案:

1. 求数字总和

立即学习“Python免费学习笔记(深入)”;

user_input = input("请您输入内容:")total = 0for char in user_input:    if char.isdigit():        num = int(char)        total += numprint("数字总和:", total)

2. 求数字数量

user_input = input("请您输入内容:")count = 0for char in user_input:    if char.isdigit():        count += 1print("数字数量:", count)

进一步说明: