gpt4 book ai didi

python - “模块”对象没有属性 'basicConfig'

转载 作者:IT老高 更新时间:2023-10-28 20:43:00 25 4
gpt4 key购买 nike

我有以下代码,复制自 Python 手册:

import logging
LOG_FILENAME = 'example.log'
logging.basicConfig(filename=LOG_FILENAME,level=logging.DEBUG)

logging.debug('This message should go to the log file')

当我尝试运行脚本时(通过 python.exe script.py),我收到 'module' object has no attribute 'basicConfig' 的错误。

但是,当我以交互模式复制和粘贴代码时(通过 python.exe 然后复制并粘贴实际代码),我没有收到任何错误。代码运行良好。

我有 python 2.6.6。

谢谢!

最佳答案

您在 Python path 上有另一个名为 logging 的模块;可能是同一目录中的 logging.py 文件。尝试使用 print(logging.__file__) 进行检查。

关于python - “模块”对象没有属性 'basicConfig',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4482587/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com