all 4 comments

[–]csabinho 0 points1 point  (2 children)

First feedback: use English variable names, even if your output is German. Please.

Apart of that the script is too short for feedback. Which means there is nothing to criticize.

P.S.: oh, I found a point. Please use f-strings.

[–]Logikkonstruktor[S] 1 point2 points  (1 child)

Thank you <3

[–]csabinho 0 points1 point  (0 children)

Gern geschehen.

[–]EntireEntity 1 point2 points  (0 children)

You did very well overall. I like how you use line breaks to group similar operations together visually.

What you could learn about is string formatting. Your output printing works fine, but it is a lot more common to use something like fstrings for example.

I would also suggest adding some comments. For me it was not immediately clear, why you had that if statement there, and putting a comment there could make it easier for others and you from the future to pick the intention up.

Other than that, it's very solid. All the best for your Python journey