为什么有些网站的Python3IDE不支持f字符串功能?

Why is that Python 3 IDE in some sites doesn't support f string function?

f 字符串函数

print(f"{theString}")

比这更容易打印字符串

print("{}".format(theString))

但是Python某些站点的3编译器不支持这个功能。是否有某些特定版本的 Python 支持此功能。

编辑:Hackerrank.com 像其他一些网站一样只是提到它 Python 3 或 2 并且没有特定版本

Python 3.6 introduced f-strings。任何 python 版本 3.6 或更高版本都将支持此功能。