Traceback (most recent call last): File "402.py", line 5, in <module> row=list(map(int, input().split(" "))) ValueError: invalid literal for int() with base 10: '1,2,3,4,5,6,7,8,9'
时间: 2024-03-06 22:49:17 浏览: 84
1,2,3,4,5,6,7字字谜
这个错误提示是因为在你的输入中包含了逗号,而int()函数只能将纯数字字符串转换为整数。你可以尝试将输入中的逗号去掉,或者使用split()方法按照逗号分割字符串再进行转换。例如:
```
row=list(map(int, input().replace(',', ' ').split()))
```
这样就可以将逗号替换为空格,并按照空格分割字符串,再将分割后的字符串列表转换为整数列表。
阅读全文