移动工具位置

This commit is contained in:
2025-01-23 22:56:14 +08:00
parent b4d092e454
commit b643dbc850
20 changed files with 0 additions and 0 deletions

View File

@ -0,0 +1,6 @@
while True:
filename = input('File Name:')
with open(filename, 'rb') as f:
file_turn = f.read()
with open(filename+'.txt', 'w') as f:
f.write(str(file_turn))