1.python概述
python: 1989 12.25 abc–>语言
荷兰 吉多.范罗苏姆 1991 v1.0
2000 大数据 人工智能 python 2010
python应用
数据采集 , 数据分析 ,web , 自动化运维测试
2.数据类型:
1)数据:信息
2)
int-整数 , float-浮点, str-字符串, bool-布尔, tuple-元组,
list-列表, dict-字典, set-集合, complex(复数)
3)类型的确定是由值决定的
3,变量
变量:变化的量(用于起名字)
规则:
1)必须是字母,数字,下划线
2)数字不能开头
3)不能是关键字 (33个)
import keyword
print(keyword.kwlist)
['False', 'None', 'True', 'and', 'as', 'assert', 'break', 'class', 'continue', 'def', 'del', 'elif', 'else', 'except', 'finally', 'for', 'from', 'global', 'if', 'import', 'in', 'is', 'lambda', 'nonlocal', 'not', 'or', 'pass', 'raise', 'return', 'try', 'while', 'with', 'yield']
4)多个单词 中间用 _ ,(驼峰) jianKangZhuangKuang(不推荐)
5)见名知意
6)大小写敏感
4,运算符:
1)算数运算符: + - * / % ** //(向下取整) 结果:数
2)比较运算符: > >= < <= == != 结果:bool
3)逻辑运算符:and(与,并且) or(或者) not(非) 结果:bool
and:男的 活的
or:要么漂亮,要么有钱
not: 不要男的
4)in not in
5)is is not