基础知识:
pyhon中的数据类型:
数字类型:整数类型int, 浮点数类型float
布尔数值类型:True or False
字符串类型string:使用单引号或者双引号表示一段文本数据
代码:
#while True 循环
while True:
#尝试执行程序,遇到异常时执行expect中的程序
try:
#将输入的字符串分割成字符列表
data = input().split()
#取得第一位和第二位元素之后转换为int类型并相加
res = int(data[0])+int(data[1])
#打印结果res
print(res)
except:
#遇到异常时,退出循环
break