I have this code
class = "maximum"
s = f"""The code for {class} is {3854-st56}"""
print(s)
I want this to output:
>> The code for maximum is {3854-st56}
But the f-string doesn't recognize the curly brackets around 3854-st56 and instead thinks I am trying to input actual Python code. How do I make the f-string recognise that the curly brackets are string literals.