I can't get to include quotation marks in the following string interpolator:
f"foo ${math.abs(-0.9876f)*100}%1.1f%%"
The output is
foo 98.8%
Now the desired output is
foo "98.8%"
Inserting \" doesn't work, only produces "unclosed string literal" errors.
f"""foo "${math.abs(-0.9876f)*100}%1.1f%""""- tenshirawmethod, didn't know these were independent. thanks - 0__