Since Python 3, we've had really nice format strings that don't require overloading of the `%` operator. I think these should be preferred, e.g.: ``` "%d is Even!" % x ``` can be ``` f"{x} is Even!" ```
Since Python 3, we've had really nice format strings that don't require overloading of the
%operator. I think these should be preferred, e.g.:can be