AttributeError: 'str' object has no attribute 'colunm'. Did you mean: 'count'?
时间: 2023-11-24 18:52:17 浏览: 100
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误是因为你在字符串对象上调用了一个不存在的属性'colunm'。正确的拼写应该是'column'。你可能想要使用'count'属性来计算字符串中某个字符出现的次数。下面是一个示例代码来演示如何使用'count'属性:
```python
str1 = "Hello, world!"
count = str1.count('o')
print(count) # 输出:2
```
阅读全文