commit message from python script

This commit is contained in:
2023-04-11 17:21:48 +02:00
parent 5eb0811319
commit c0ae9cc93d
184 changed files with 3725 additions and 31 deletions

11
meine_test/write_Datei.py Executable file
View File

@@ -0,0 +1,11 @@
#!/usr/bin/env python3
import time
#merge dir w schreibt neu a fügt hinzu :)
with open("Textdatei.txt", "a") as write_input :
while True:
eingabe = input("Gib etwas ein : ")
if eingabe == "" :
break
print(time.strftime('%Y-%m-%d %H:%M:%S') + " input {my_input}".format(my_input=eingabe), file=write_input)