gpt4 book ai didi

python - 打开两个文件的最佳方式

转载 作者:行者123 更新时间:2023-12-05 08:15:38 24 4
gpt4 key购买 nike

我需要打开一个文件,读取一行,对其进行哈希处理,然后保存到另一个文件中。我应该在脚本的开头打开两个文本文件,还是应该在每次保存/读取时都打开?我是这一切的新手,我正在为 sl4a 使用 python for android。到目前为止,这是我的代码:

import android
import hashlib
import time
name = 0
droid = android.Android()
name = raw_input("Enter a password to hash: ")
hash_object = hashlib.md5 (name)
print(hash_object.hexdigest())
time.sleep(2)
print name

f = open('name.txt', 'w',)
f.write(hash_object.hexdigest())
f.close()

最佳答案

如果你想从文件 name.txt 中读取并写入另一个文件:

with open('name.txt', 'r') as f, open('out.txt', 'w') as f1:
line = f.next() # get first line
hash_object = hashlib.md5 (line)
f1.write(hash_object.hexdigest()) # write to second file

关于python - 打开两个文件的最佳方式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24706370/

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