摘要:
https://blog.csdn.net/ShiMengRan107/article/details/89476950?spm=1001.2014.3001.5502 阅读全文
摘要:
login="123" def test(): print(f"the value={login}") test() 运行结果: the value=123 结果说明 f开头表示在字符串内支持大括号内的python 表达式 python输出函数加上f的作用:即print(f" ")主要作用就是格式化 阅读全文