F string prefix in python giving a syntax error

Question:

I have a variable called method, it’s value is POST but when I try to run print(f"{method} method is used.") it keeps giving a syntax error at the last double quote and I can’t find the reason on why it does this. I am using python 3.5.2.

Asked By: PlanetTeamSpeak

||

Answers:

F-strings were a new feature introduced in Python 3.6, so of course they’re not going to work in 3.5.2.

Answered By: jasonharper
Categories: questions Tags: ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.