Number:数字
int :整数
float :浮点数
bool 布尔类型:表示真、假
cpmplex 复数
str 字符串 单引号 双引号 三引号
转义字符
\n 换行
\' 单引号
\r 回车
\t 横向制表符
下载好后就可以用idle来使用简单的检测类型了 可以用type方法来检测
>>> 'let' s go '
结果就是报错 然后我们加上 \
>>> 'let\'s go'
'let' s go'
下面我们开始认识一个符号[],里面可以填写一个数字
>>> 'hello world' [0]
'h'
>>> 'hello world' [1]
'e'
>>> 'hello world' [2]
'l'
>>> 'hello world' [-1]
'd'
>>> 'hello world' [0:4]
'hell'
>>> 'hello world' [0:-1]
'hello world'
>>> 'hello world' [6:]
'world'
>>> 'hello world' [6:-0]
''