Initial commit

This commit is contained in:
2026-02-20 02:10:49 +01:00
commit c68c881f28
9 changed files with 275 additions and 0 deletions

11
datetest.py Normal file
View File

@@ -0,0 +1,11 @@
test_datum = '2026-02-08'
wechesel = test_datum.split('-')
jahr = wechesel[0]
monat = wechesel[1]
tag = wechesel[2]
print(f'{tag}.{monat}.{jahr}')