关于Python文件程序运行的问题
f=open("D:\\test.txt")boy = []
girl = []
count = 1
for each in f:
if each[:6] !="======":
(role,line_spoken)=each.split(":",1)
if role=="小甲鱼":
boy.append(line_spoken)
if role=="小客服":
girl.append(line_spoken)
else:
file_name_boy="boy_"+str(count)+"txt"
file_name_girl="boy_"+str(count)+"txt"
boy_file=open(file_name_boy,"w")
girl_file=open(file_name_girl,"w")
boy_file.writelines(boy)
girl_file.writelines(girl)
boy_file.close()
girl_file.close()
boy=[]
girl=[]
count+=1
f.close()
程序照着小甲鱼视频打的,为啥运行出来是这个结果
Python 3.9.5 (tags/v3.9.5:0a7dcbd, May3 2021, 17:27:52) on win32
Type "help", "copyright", "credits" or "license()" for more information.
>>>
感觉跟没运行一样,求大佬解答
还有为啥 if each[:6] !="======":这一个语句里不该是“==”吗咋是”=“? 好像是你python安装版本问题,你电脑是多少位的就需要安装多少位的python 18368596936 发表于 2021-7-13 21:19
还有为啥 if each[:6] !="======":这一个语句里不该是“==”吗咋是”=“?
感觉跟没运行一样,求大佬解答
这里代码中没有一个 print 当然在控制台没有显示什么,看下你这个代码文件夹下有没有生成 txt 文件
还有为啥 if each[:6] != "======":这一个语句里不该是“==”吗咋是”=“?
这里是 != 不等于 , 不是 == 又或者 =
页:
[1]