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
注意:在引号内还想输出变量的方法是 给变量加上大括号 {}