Daniel Podrażka
Results
1
comments of
Daniel Podrażka
I actually format strings this way, especially when combined with `=`, as in: ```python a = 5.13 print(f"{a = :0.1f}") ``` ``` 'a = 5.1' ``` I don't think we...