'int' object has no attribute 'strip'什么意思
时间: 2023-08-02 14:05:35 浏览: 1160
AttributeError: ‘NoneType’ object has no attribute ‘children’ 错误
5星 · 资源好评率100%
这个错误提示意味着你尝试对一个整数类型的对象(`int`)使用 `strip()` 方法,但是整数类型并没有 `strip()` 方法。
`strip()` 方法是用来去除字符串首尾的空格或指定的字符。它只能用于字符串类型的对象。
如果你想去除一个整数的首尾空格,你需要先将它转换为字符串类型,然后再使用 `strip()` 方法。例如:
```python
my_int = 10
my_str = str(my_int)
my_stripped_str = my_str.strip()
```
这样就可以去除整数 `10` 的首尾空格了。请确保要对一个字符串对象使用 `strip()` 方法,而不是整数对象。
阅读全文