为什么 pandas 给我输出:convertbinarytoasc.py<输出文件>当执行“import pandas as pd”时

发布于 2025-01-10 05:39:16 字数 574 浏览 0 评论 0原文

我正在尝试在我的脚本之一中使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一抹淡然 2025-01-17 05:39:16

@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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文