1.变量
message = "Hello Python world!"
print(message)
变量是可以赋值的标签,变量指向特定的值。
2.字符串
"this is a string"
'this is a string'
'this is a "string"'
"this is a 'string'"
"this's a string"
2.1使用方法修改字符串的大小写
name ='this is a string'
name.title()
name.upper()
name.lower()
2.2在字符串中使用变量
name ="this is a string"
f"hello,{name}"
"hello,{}".format(name)
2.3使用制表符或换行符来添加空白
制表符
print('\tpython')
换行符
print('this\nis\na\nstring')
2.4删除空白
name=' this is a string '
#删除字符串开头多余空白
name.rstrip()
#删除字符串末尾多余空白
name.lstrip()
#删除字符串开头和末尾多余空白
3.数
3.1整数和浮点数
可以对整数进行加减乘除
>>>3/2
1.5
任意连个数相除结果总是浮点数
>>>6/3
2.0
整数和浮点数运算为浮点数
>>>2*3.0
6.0
3.2数中的下划线
可以使用下划线对数进行分组,使数据更清晰,整数和浮点数都可以
>>>name=8_000
>>>print(name)
8000
3.3同时给多个变量赋值
>>>a,b,c=1,1,2
3.4常量
python中默认没有常量,但是人们一般用大写表示常量
MAX=5000
4.注释
#输出hello
print("hello")
详见《python编程从入门到实践》