if account.isdight(): AttributeError: 'str' object has no attribute 'isdight'
时间: 2024-01-03 12:23:15 浏览: 74
AttributeError: module 'tensorflow.compat.v1' has no attribute '
根据提供的引用内容,出现"AttributeError: 'str' object has no attribute 'isdight'"错误是因为字符串对象没有名为'isdight'的属性。正确的方法是使用字符串对象的内置方法isdigit()来判断字符串是否只包含数字字符。
以下是一个示例代码:
```python
account = "12345"
if account.isdigit():
print("The account is a digit.")
else:
print("The account is not a digit.")
```
这段代码首先将字符串赋值给变量account,然后使用isdigit()方法来判断account是否只包含数字字符。如果是,则输出"The account is a digit.",否则输出"The account is not a digit."。
阅读全文