Python .txt datei mit python erstellen

  • Ersteller Ersteller kcinay055679
  • Erstellt am Erstellt am
K

kcinay055679

Gast
Hallo liebes Computerbase Forum
Ich hätte da eine Anfängerfrage
Wie erstelle ich eine LEERE .txt datei mit python.

Meine Versuche mit Hilfe des Web sahen so aus
Python:
import os
import _thread
import threading
CurrFileName =  F"WlanFile{threading.activeCount()}.txt"
F"C:\\Users\\yamin\\Desktop\\Wlan\\{CurrFileName}"
echo. > F"{CurrFileName}"
os.system(F"start {CurrFileName}")

was mache ich falsch??
 
Hallo kcinay,

versuche es mal so:

Python:
file = open("test.txt","w")
file.close()

etwas in die Datei packen kannst du so:

Code:
file = open("test.txt","w")
file.write("Computerbase")
file.close()
 
  • Gefällt mir
Reaktionen: Mulciber
Zurück
Oben