变量
变量命名规则
1.变量名只能包含 字母,数字和下划线。变量名能以字母或下划线打头,但不能以数字打头。
2.变量名不能包含空格。
字符串
1.输出首字母大写
name = "ada lovelace"
print(name.title)
输出:Ada Lovelace
2.在字符串中使用变量
first_name ="niu"
last_name ="yaning"
full_name =f"{first_name}{last_name}"
print(full_name)
输出:niuyaning
3.输出加 空格 \ t
print("python")
print("\t python")
输出:
python
python
4.输出换行 \ n
print("banana\napple\norange")
输出 :
banana
apple
orange
5.输出去除空白 开头空白:lsstrip() / 结尾空白: rstrip() / 两边空白: strip() 方法
name =' python '
print(name.rstrip())
数
整数:1,2,3,4,5,6
浮点数:0.1,0.2,0.3,0.4
数中的下划线:
universe_age = 14_000_000_000
print (universe_age)
输出 14000000000
同时给多个变量赋值
x,y,z = 0,0,0
注释
#
‘’‘
’’‘’
python之禅:import this