为何我打不开文件
>>> f = open('E:\\第十四章作业1.py')>>> f
<_io.TextIOWrapper name='E:\\第十四章作业1.py' mode='r' encoding='cp936'>
>>> f.read()
Traceback (most recent call last):
File "<pyshell#80>", line 1, in <module>
f.read()
UnicodeDecodeError: 'gbk' codec can't decode byte 0xa3 in position 20: illegal multibyte sequence
>>> f.read(5)
''
以下是我保存在E盘的文件:第十四章作业1
# 密码安全性检查代码
#
# 低级密码要求:
# 1. 密码由单纯的数字或字母组成
# 2. 密码长度小于等于8位
#
# 中级密码要求:
# 1. 密码必须由数字、字母或特殊字符(仅限:~!@#$%^&*()_=-/,.?<>;:[]{}|\)任意两种组合
# 2. 密码长度不能低于8位
#
# 高级密码要求:
# 1. 密码必须由数字、字母及特殊字符(仅限:~!@#$%^&*()_=-/,.?<>;:[]{}|\)三种组合
# 2. 密码只能由字母开头
# 3. 密码长度不能低于16位
symbols = r'''`!@#$%^&*()_+-=/*{}[]\|'";:/?,.<>'''
chars = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
nums = '0123456789'
passwd = input('请输入需要检查的密码组合:')
# 判断长度
length = len(passwd)
while (passwd.isspace() or length == 0) :
passwd = input("您输入的密码为空(或空格),请重新输入:")
length = len(passwd)
if length <= 8:
flag_len = 1
elif 8 < length < 16:
flag_len = 2
else:
flag_len = 3
flag_con = 0
# 判断是否包含特殊字符
for each in passwd:
if each in symbols:
flag_con += 1
break
# 判断是否包含字母
for each in passwd:
if each in chars:
flag_con += 1
break
# 判断是否包含数字
for each in passwd:
if each in nums:
flag_con += 1
break
# 打印结果
while 1 :
print("您的密码安全级别评定为:", end='')
if flag_len == 1 or flag_con == 1 :
print("低")
elif flag_len == 3 and flag_con == 3 and (passwd in chars):
print("高")
print("请继续保持")
break
else:
print("中")
print("请按以下方式提升您的密码安全级别:\n\
\t1. 密码必须由数字、字母及特殊字符三种组合\n\
\t2. 密码只能由字母开头\n\
\t3. 密码长度不能低于16位")
break
改一下编码:
f = open('E:\\第十四章作业1.py', encoding = "utf-8") 编码问题,试下utf-8或者ansi 因为编码错误 程序无法解码
而py文件的编码方式是utf-8
只用把打开文件那一句换成f = open('E:\\第十四章作业1.py', encoding = "utf-8") 本帖最后由 liujie6704 于 2020-5-6 17:55 编辑
wuqramy 发表于 2020-5-6 11:25
因为编码错误 程序无法解码
而py文件的编码方式是utf-8
只用把打开文件那一句换成
读出是这样,也是乱码。
>>> f = open('E:\\第十四章作业1.py', encoding = "utf-8")
>>> f
<_io.TextIOWrapper name='E:\\第十四章作业1.py' mode='r' encoding='utf-8'>
>>> f.read()
'\n# 密码安全性检查代码\n#\n# 低级密码要求:\n# 1. 密码由单纯的数字或字母组成\n# 2. 密码长度小于等于8位\n#\n# 中级密码要求:\n# 1. 密码必须由数字、字母或特殊字符(仅限:~!@#$%^&*()_=-/,.?<>;:[]{}|\\)任意两种组合\n# 2. 密码长度不能低于8位\n#\n# 高级密码要求:\n# 1. 密码必须由数字、字母及特殊字符(仅限:~!@#$%^&*()_=-/,.?<>;:[]{}|\\)三种组合\n# 2. 密码只能由字母开头\n# 3. 密码长度不能低于16位\n\nsymbols = r\'\'\'`!@#$%^&*()_+-=/*{}[]\\|\'";:/?,.<>\'\'\'\nchars = \'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ\'\nnums = \'0123456789\'\n\npasswd = input(\'请输入需要检查的密码组合:\')\n\n# 判断长度\nlength = len(passwd)\n\nwhile (passwd.isspace() or length == 0) :\n passwd = input("您输入的密码为空(或空格),请重新输入:")\n length = len(passwd)\n\nif length <= 8:\n flag_len = 1\nelif 8 < length < 16:\n flag_len = 2\nelse:\n flag_len = 3\n\nflag_con = 0\n\n# 判断是否包含特殊字符\nfor each in passwd:\n if each in symbols:\n flag_con += 1\n break\n \n# 判断是否包含字母\nfor each in passwd:\n if each in chars:\n flag_con += 1\n break\n\n# 判断是否包含数字\nfor each in passwd:\n if each in nums:\n flag_con += 1\n break \n\n# 打印结果\nwhile 1 :\n print("您的密码安全级别评定为:", end=\'\')\n if flag_len == 1 or flag_con == 1 :\n print("低")\n elif flag_len == 3 and flag_con == 3 and (passwd in chars):\n print("高")\n print("请继续保持")\n break\n else:\n print("中")\n\n print("请按以下方式提升您的密码安全级别:\\n\\\n \\t1. 密码必须由数字、字母及特殊字符三种组合\\n\\\n \\t2. 密码只能由字母开头\\n\\\n \\t3. 密码长度不能低于16位")\n break\n' liujie6704 发表于 2020-5-6 17:54
读出是这样,也是乱码。
>>> f = open('E:\\第十四章作业1.py', encoding = "utf-8")
>>> f
这不算乱码吧
可以这样试试:
print(f.read()) liujie6704 发表于 2020-5-6 17:54
读出是这样,也是乱码。
>>> f = open('E:\\第十四章作业1.py', encoding = "utf-8")
>>> f
不是乱码
\n是回车
页:
[1]