其他分享
首页 > 其他分享> > NOTE1:关于print() 10/01/2021-初学者

NOTE1:关于print() 10/01/2021-初学者

作者:互联网

1.print()用于输出

2.print(“  ”)会如实输出双引号内的内容

print(“HEllow python”)

输出:HRllow python

3.print()没有双引号,用于输出变量

eg1.     a = hellow python

            print(a)      输出:hellow python

注意: print(“a”)    输出:a (而不是 hellow python,参考第 2 点).

4.print(f “   ”):括号内多了个f,为了能在括号内可以加 大括号 {}

eg2.    b = python

           print(f “i love {b} ”)       输出: i love python

注意:在引号内还想输出变量的方法是 给变量加上大括号 {}

标签:10,01,love,输出,NOTE1,双引号,python,print,hellow
来源: https://blog.csdn.net/weixin_62186646/article/details/120577788