l = [] while True: s = input() if s == '0': #注意:这里是对0加引号,而不是使用int(s),如果输入'hello',int(s)会报错,所以是用字符串'0' break else: l.append(s) print(" ".join(l))
标签:类型转换,实战,python,练习,int,使用 From: https://www.cnblogs.com/bravesunforever/p/17627532.html
l = [] while True: s = input() if s == '0': #注意:这里是对0加引号,而不是使用int(s),如果输入'hello',int(s)会报错,所以是用字符串'0' break else: l.append(s) print(" ".join(l))
标签:类型转换,实战,python,练习,int,使用 From: https://www.cnblogs.com/bravesunforever/p/17627532.html