使用python阅读带有密码的txt文件

时间:2019-05-23 17:26:05

标签: python file cmd passwords

我无法使用python打开带有密码的txt文件构建

我使用以下代码在CMD中制作了一个受密码保护的txt文件:

C:\notepad test.txt:pass->其中C:\是位置,记事本test.txt是文件创建部分,:pass是用于保护文件的密码

然后,我尝试使用python脚本打开并阅读机密文本:

file = open("test.txt:pass", mode = "r") 
print file.read()

但没有成功

C:\ notepad test.txt:pass-CMD区域

file = open("test.txt:pass", mode = "r") 
print file.read()           #- for python code

我也尝试了open的编码参数,但是没有运气。我没有收到此类文件或目录错误。

0 个答案:

没有答案