with open('output.txt', 'w') as file: # Use file to refer to the file object
file.write('Hi there!')
# more down here
# https://www.pythonforbeginners.com/files/with-statement-in-python
with open('output.txt', 'w') as file: # Use file to refer to the file object
file.write('Hi there!')
with open('songs.txt') as f,open('songs_out.txt', 'w') as f_out:
for line in f:
line = line.strip()
if line.startswith("#EXTINF"):
f_out.write(f'{line}
')
name = line.split(",")[1]
f_out.write(f'{name}.mp3
')