事发现场
偶然运行到之前写的爬虫,发现运行不了,报错invalid syntax,于是来找bug
报错截图:
原因:
这样用法称之为 f-string
f-string,亦称为格式化字符串常量(formatted string literals),是Python3.6新引入的一种字符串格式化方法,该方法源于PEP 498 – Literal String Interpolation,主要目的是使格式化字符串的操作更加简便。f-string在形式上是以 f
或 F
修饰符引领的字符串(f'xxx'
或 F'xxx'
),以大括号 {}
标明被替换的字段;f-string在本质上并不是字符串常量,而是一个在运行时运算求值的表达式:
While other string literals always have a constant value, formatted strings are really expressions evaluated at run time.
(与具有恒定值的其它字符串常量不同,格式化字符串实际上是运行时运算求值的表达式。)
—— Python Documentation
f-string在功能方面不逊于传统的%-formatting语句和str.format()
函数,同时[性能](http://www.mlln.cn/2018/05/19/python3 f-string格式化字符串的高级用法/)又优于二者,且使用起来也更加简洁明了,因此对于Python3.6及以后的版本,推荐使用f-string进行字符串格式化。
以上参考博客https://blog.csdn.net/sunxb10/article/details/81036693
原因!python版本不匹配,这个要3.6之后才能用!
因此,升级python版本即可。问题解决。