这是个什么语句
def add(x, y, /, *args, **kwargs):print(f"x={x}, y={y}")
add(1,2)
能解释下print后面(f"x={x}, y={y}")中,f"x={x}, y={y}"这是什么语句?又是什么意思呢? fstring 字符串格式化。 https://blog.csdn.net/sunxb10/article/details/81036693
f-string 是格式化字符串的一种方法,可以参考:https://fishc.com.cn/forum.php?mod=viewthread&tid=145610
页:
[1]