Python-任意多行字符串拆分数值求和
时间: 2023-06-04 09:02:39 浏览: 177
Python实现分数序列求和
好的,这个问题可以回答。可以使用Python的多行字符串(triple-quoted string)将多个数值拆分成一个列表,然后用for循环遍历列表,将每个数值转换为整型后累加起来。示例代码如下:
```
s = '''
1
2
3
4
5
'''
total = 0
for num_str in s.strip().split('\n'):
num = int(num_str)
total += num
print(total) # 输出15
```
阅读全文