|
|
|
|
|
by dangrie158
1409 days ago
|
|
You may want to use Format specifiers or fstrings (>py36) for a „more pythonic“ code. Also why do you annotate every variable, even if the type can be deduced automatically? That’s going to be a real PITA if you want to refactor the code e.g to support floats instead of ints any time in the future (in this case it’s probably just a hypothetical problem) |
|