输出多个整数,并依次将这些数字输出输入:一行数据,包含若干个整数,数据之间使用空格间隔
收起
a=input('请输入一组数字:') b = a.split() for i in b: print(i)
报告相同问题?