1
0
6
309
输入和输出 输入:input() 输出:print() if语句 if 条件: 语句1 else: 语句2 and or not...
数据类型分三大类:整型,浮点型,虚数 >>>type(1) <class 'int'> >>>type(1.0) <class 'float'>...
基本字符: “\” 转义字符,用来输入语句中使用 “\n” 换行字符,输入语句中使用 "+" 拼接字符,可以拼接字符串 print自带字符串拼接...