Konu
Python Çıktıyı kaydetme
13-04-2021, 12:47:57
#7
Gelistirici
En iyisi sanırım
content = f"{username}:{password}"
with open('file.txt', 'a') as f:
f.write(content)