I see many people using format strings like this:
root = \"sample\" output = \"output\" path = \"{}/{}\".format(root, output)
Instead of si
As of Python 3.6 you can do literal string interpolation by prepending f to the string:
f
foo = "foo" bar = "bar" path = f"{foo}/{bar}"