exaxorg / accelerator

The Accelerator is a tool for fast and reproducible processing of eBay-scale datasets on a single computer.
https://exax.org
Apache License 2.0
4 stars 1 forks source link

Use Python format strings instead of "{}" % var construct #9

Open pabloyoyoista opened 3 months ago

pabloyoyoista commented 3 months ago

This is a more comfortable and modern way to format strings. It is supported since Python 3.6 and it's a lot more comfortable to use. I also bet there are young Python programmers (like new people that might get added to our datascience team) that have never seen anything different, since Python 3.6 was released in 2016

Ref: https://docs.python.org/3/reference/lexical_analysis.html#f-strings

Depends #8