Files
NFLmusic/tools/turn_images/turn_image.py
2025-01-23 22:56:14 +08:00

6 lines
186 B
Python

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))