为什么 pandas 给我输出:convertbinarytoasc.py<输出文件>当执行“import pandas as pd”时输出文件>
我正在尝试在我的脚本之一中使用 pandas lib。
这是很少的第一行:
import numpy as np
print("numpy ok")
import pandas as pd
print("pandas ok")
并且我一直有这样的输出:
numpy ok
convertbinarytoasc.py <infile> <outfile>
PS C:\py
如果我这样做:
import numpy as np
print("numpy ok")
#import pandas as pd
print("pandas ok")
那么输出是:
numpy ok
pandas ok
PS C:\py
我在网上找不到任何关于此的信息。 使用Python 3.9 32位/64位。 在其他环境中做同样的
事情脚本在VScode中运行,使用pip来安装东西
有人知道吗?
感谢您帮助我:)
I'm trying to use pandas lib in one of my script.
here is the very few first lines :
import numpy as np
print("numpy ok")
import pandas as pd
print("pandas ok")
and I keep having this output :
numpy ok
convertbinarytoasc.py <infile> <outfile>
PS C:\py
If I do :
import numpy as np
print("numpy ok")
#import pandas as pd
print("pandas ok")
then the output is :
numpy ok
pandas ok
PS C:\py
I found nothing on web about that.
using python 3.9 32bit/64bit.
do the same in other environment
Script is running in VScode, used pip to install stuff
Anybody knows about this?
Thk for helping me :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
@phd
我确实检查过,并且在同一文件夹中发现了一个名为“csv.py”的旧脚本。该脚本似乎是由 pandas 库加载的。我从文件夹中删除了脚本,pandas 工作得很好。
@phd
I did check, and I found an old script named "csv.py" in the same folder. this script seems to be loaded by the pandas lib. I Removed the script from the folder and pandas works perfect.