12 lines
153 B
Python
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}')
|
|
|
|
|