invalid literal for int() with base 10: '\u200b'
时间: 2023-10-16 17:26:10 浏览: 129
c++ std::invalid_argument应用
5星 · 资源好评率100%
这个错误通常是因为在字符串中存在不可见字符,例如空格或制表符。您可以尝试使用strip()函数删除字符串中的不可见字符,然后再尝试将其转换为int类型。例如:
```
s = '\u200b123'
s = s.strip()
i = int(s)
print(i)
```
输出:
```
123
```
阅读全文