educative.io

Python version?

What version of Python 3 is used in this course?
I tried using an f-string (which was implemented in version 3.6) in a print statement and got a syntax error.

import sys
print(sys.version_info)

sys.version_info(major=3, minor=5, micro=2, releaselevel='final', serial=0)

Hi @A_Smith,
The Python 3 version used on the platform is Python 3.5.2, so the f-string you are trying to implement will not work.