Files
pythonkurs/teil4/fstring.py
Raspithek 3d8cb9128d Teil 6 "Objekte ist neu
Repository aufgeräumt.
2023-02-24 06:41:05 +01:00

7 lines
79 B
Python

a=5
b=10
produkt = a * b
print(f'Das Produkt aus {a} und {b} ist {produkt}')