>>> normal="The\n\t\n quick silver fox ran over lazy dog's"
>>> normal
"The\n\t\n quick silver fox ran over lazy dog's" # 1
>>> json.dumps(normal)
'"The\\n\\t\\n quick silver fox ran over lazy dog\'s"'
>>> r"The\n\t\n quick silver fox ran over lazy dog's"
"The\\n\\t\\n quick silver fox ran over lazy dog's"
>>> r"{}".format(normal)
"The\n\t\n quick silver fox ran over lazy dog's"
>>> rf"{normal}"
"The\n\t\n quick silver fox ran over lazy dog's"
How can I convert normal string (#1) to raw string (#2) using String Formatting or F-stings