dengan terbuka
with open('output.txt', 'w') as file: # Use file to refer to the file object
file.write('Hi there!')
Relieved Ray
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}\n')
name = line.split(",")[1]
f_out.write(f'{name}.mp3\n')