gpt4 book ai didi

python - 如何从 Python 中的文件一次读取一个字符?

转载 作者:IT老高 更新时间:2023-10-28 21:43:05 24 4
gpt4 key购买 nike

谁能告诉我该怎么做?

最佳答案

with open(filename) as f:
while True:
c = f.read(1)
if not c:
print "End of file"
break
print "Read a character:", c

关于python - 如何从 Python 中的文件一次读取一个字符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2988211/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com