Files
Alpha/datetest.py
2026-02-20 02:10:49 +01:00

12 lines
153 B
Python

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