一、布尔型
布尔操作符:and ,or ,not
优先级:not > and > or
类真类假:在用于条件时,0,0.0,‘’(空字符串)被认为是False
提前结束程序:sys.exit() ( 需导入sys模块)
random.randint(a,b):返回a-b之间的任意整数,包含a,b