一行输入多个数字,空格隔开,存入列表a中a = list(map(int, input().split())) print(a) >>>21 22 34 54 67 >>>[21, 22, 34, 54, 67]. # 多行输入: ...
確定! 回上一頁