Initial commit
This commit is contained in:
11
datetest.py
Normal file
11
datetest.py
Normal 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}')
|
||||
|
||||
|
||||
Reference in New Issue
Block a user