E AttributeError: module 'time' has no attribute 'clock'
时间: 2023-08-25 10:07:01 浏览: 150
关于.NET Attribute在数据校验中的应用教程
根据引用和引用,在Python 3.8中,time模块不再支持clock方法,所以当你在PyCharm中调用time.clock时会出现AttributeError的异常。解决这个问题的方法是将time.clock替换为time.perf_counter()。你可以按照以下方式修改代码:
```python
import time
if win32 or jython:
time_func = time.perf_counter()
else:
time_func = time.time
# 其他代码继续使用time_func进行时间计算
```
关于你提到的另一个问题,根据引用,你的朋友在使用pandas读取数据库时遇到了报错。根据你提供的代码,报错可能与pymssql模块有关。你可以尝试按照以下步骤解决该问题:
1. 确保你已经正确安装了pymssql模块。你可以使用`pip install pymssql`命令来安装。
2. 确保你提供的服务器地址、用户名、密码和数据库名是正确的。请检查是否有任何拼写错误或者连接信息的问题。
3. 确保你的数据库服务器正常运行,并且你的账号有权限访问指定的数据库。
4. 如果问题仍然存在,请提供完整的错误信息,以便我们能够更好地帮助你解决问题。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *3* [已解决(Python3.8异常)AttributeError: module ‘time‘ has no attribute ‘clock](https://blog.csdn.net/yuan2019035055/article/details/124726505)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT0_1"}}] [.reference_item style="max-width: 50%"]
- *2* [AttributeError: module ‘time‘ has no attribute ‘clock](https://blog.csdn.net/qq_52689354/article/details/124886569)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT0_1"}}] [.reference_item style="max-width: 50%"]
[ .reference_list ]
阅读全文