[每次运行代码时,我都会在python上返回文本IO包装器
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[每次运行代码时,我都会在python上返回文本IO包装器相关的知识,希望对你有一定的参考价值。
<
s=[]
p1details=["ash",""]
p2details=["lillie",""]
import random
p1details[1]=random.randint(1,100)
p2details[1]=random.randint(1,100)
if p1details[1]>p2details[1]:
s.append(p1details)
elif p2details[1]>p1details[1]:
s.append(p2details)
#with open("score.txt", 'r') as G:
# print(G.read())
with open('score.txt','w') as score:
s.sort(key=lambda x:x[1], reverse=True)
score.writelines("%s\n" % place for place in s)
score.close()
leader=open("score.txt")
print(leader)
score.close
答案
leader = open("score.txt").read()
print(leader)
如果不使用read()
,则leader
只有文件的处理程序,以后可以用来读取它。
leader = open("score.txt")
print(leader.read())
以上是关于[每次运行代码时,我都会在python上返回文本IO包装器的主要内容,如果未能解决你的问题,请参考以下文章
STS 启动错误 - Java 已启动但返回退出代码 = 13
每次我滚动 cell.viewWithTag 都会在展开时给出致命错误发现 nil
无论我做啥,我都会在打印时遇到语法错误。这是下面的代码,我找不到问题所在