1 2 3 4 5 6
def main() -> None: x: float = 1.0 / 3.0 print(x) print(round(x, 3)) print(2.5 + 0.1) print(10.0 / 4.0)