“Python schreibt ein Wörterbuch zur Datei” Code-Antworten

So speichern Sie das Diktat im TXT -Format

dict = {'Python' : '.py', 'C++' : '.cpp', 'Java' : '.java'}
f = open("dict.txt","w")
f.write( str(dict) )
f.close()
Vivacious Vole

Python schreibt ein Wörterbuch zur Datei

dictionary = {'someKey' : 'someValue'}
file_path = 'somePathToFile/someFileName.py'
with open(file_path, 'w') as output_file:
    print(dictionary, file=output_file)
HAL's therapist

Ähnliche Antworten wie “Python schreibt ein Wörterbuch zur Datei”

Fragen ähnlich wie “Python schreibt ein Wörterbuch zur Datei”

Weitere verwandte Antworten zu “Python schreibt ein Wörterbuch zur Datei” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen