python基础数据类型
python字符串类型包括有:
整数
浮点数
字符串
布尔
空
python定义变量的方法
1、变量名由大小写英文字母,数字,下划线组成
2、不能使用数字开头
3、不能使用python关键字
示例:
a = 1
b = 1.33
hello = ‘HELLO’
python的整数与浮点数
整数和浮点数都是可以直接进行计算的
计算比较简单,这里不在列举
python的布尔类型
与
当两个布尔都为true时,结果为true
或
有一个为true,结果为true
非
把true变为false,或false变为true
python的字符串
字符串可以使用 ’ ’ 或 " " 表示,如果字符串本身包含 ’ 可以用转义符\ 进行转义
\n 换行
\t 制表符
\ 表示\ 字符本身
python中的raw字符串与多行字符串
如果一个字符串中包含很多需要转义的字符,每一个字符进行转义就会很麻烦,为了避免这种麻烦,可以使用raw方法
示例: r’…’
print(r’“To be, or not to be”: that is the question.’)
但这种方法不适合多行字符串,如果是多行字符串可以使用 r’’’…’’’
print(r’’’“To be, or not to be”: that is the question.
Whether it’s nobler in the mind to suffer.’’’)
python字符串format
format 主要用来处理程序中不固定的字符串
print(‘Life is short, you need {}’.format(‘Python’))
print(‘Life is short, you need {launguage}’.format( launguage = ‘Python’))
python的字符串编码
在python3中,默认使用utf-8 进行编码,中文字符串和英文字符串无异
s = ‘这是一句中英文混合的Python字符串:Hello World!’
print(s)
python的字符串切片
切片是用来获取字符串一部分的子串
S = ‘ABCDEFG’
ab = S[0] 获取第一个
ab = S[-1] 获取最后一个
ab = S[0:3] —ABC