6 lines
186 B
Python
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)) |