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

6 lines
72 B
Python

import math
print(f'Pi ist {math.pi}')
print(f'Pi ist {math.pi:.2f}')