AttributeError: 'builtin_function_or_method' object has no attribute 'choices'
时间: 2024-05-09 21:12:58 浏览: 191
【Python】AttributeError: ‘AutoSchema’ object has no attribute ‘get_link’
5星 · 资源好评率100%
AttributeError: 'builtin_function_or_method' object has no attribute 'choices'是一个常见的错误,通常出现在使用Python中的random模块时。这个错误的原因是在代码中调用了一个没有属性"choices"的内置函数或方法。
在Python 3.6之前的版本中,random模块并不支持choices方法。如果你在较旧的Python版本中使用该方法,就会出现AttributeError错误。
如果你正在使用较旧的Python版本,请尝试使用其他替代方法,例如random.choice,来进行随机选择。如果你正在使用Python 3.6及以上版本,请确保你的代码中导入的是正确的模块,以及该模块是否支持choices方法。
阅读全文