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