6-1什么是表达式?
一行行代码就是就是表达式
表达式(expression)是运算符(operator)和操作数(operand)所构成的序列
6-2表达式的优先级
and优先级高于or
平级运算符默认是从左到右执行的!
括号可以提高优先级括号的优先级是最高的
优先级由高到低如下图:
一般左结合;从左到右运算
特例:右结合 : 赋值运算 c = a or b先执行等号右边的
6-3表达式优先级练习
看看下面的例子
6-4在文本文件中编写Python代码
pycharm vscode sublime
6-5熟悉vscode 开发环境与Python插件安装
Python在每行末尾不强制分号;
不需要花括号{}来包裹起来
Python是靠缩进来控制代码块
6-6流程控制语句之条件控制一
流程控制语句
条件控制 if else 俩个同一列,才是一个条件控制,if可以单独使用,else不可以单独使用
循环控制 for while
分支 switch Python没有switch语法
Python里单行注释 #;多行注释... ...即可
在vscode里,单行注释的快捷键“control+/”
多行注释的快捷键“alt + shift + a”
如果mood = False打印的结果为“go to right”
6-7 流程控制语句之条件控制二
接收用户输入函数:input
来看下面的小程序:
account = 'xiaoyu'
password = '123456'
print('please input account')
user_account = input()
print('please input password')
user_password = input()
if account == user_account and password == user_password:#当用户名和密码都对才登陆成功
print('success')
else:
print('fail')
6-8 常量与pylint的规范
account = 'xiaoyu'
password = '123456'
print('please input account')
user_account = input()
print('please input password')
user_password = input()
if account == user_account and password == user_password:
print('success')
else:
print('fail')
Python中的常量 constant (常量)应该用大写表示。如上面代码的account和password应该全部改写成大写才合理!
6-9流程控制语句之条件控制三 snippet、嵌套分支、代码块的概念
snippet 片段
# snippet 片段
快速定义基本结构
if 上下键选择 if else 这就是snippet 代码块
选择完后按tab选择下一个输入区域
返回上一个 shift + tab
# if code :
# pass
# else:
# pass
# a = True
'''
if a :
print('')
else:
print('')
if True:
pass #(空语句/占位符)
else:
pass
'''
# 代码块
if condition:
code1
code11 #代码块
code22
code2
code3
else:
code1
code2
code3
# 嵌套分支
if condition:
if condition:
pass
else:
if condition:
pass
else:
pass
else:
pass
6-10流程控制语句之条件控制 四 elif的优点
'''
a = x 用代码描述这段话!
a = 1 print('apple')
a = 2 print('orange')
a = 3 print('banana')
print('shopping')
'''
a = input()
print('a is' + a)
if a == 1:
print('apple')
else:
if a == 2:
print('orange')
else:
if a == 3:
print('banana')
else:
print('shopping')
上述结果不正确,为什么?
看看正确的代码:
a = input()
# print(type(a))
# print('a is' + a)
a = int(a) # 转换成int类型 输入接收的是字符串类型
if a == 1:
print('apple')
else:
if a == 2:
print('orange')
else:
if a == 3:
print('banana')
else:
print('shopping')
下面看看使用elif的优点!!!
a = input()
print('a is' + a)
if a == 1:
print('apple')
elif a == 2: else if 简写 elif
print('orange')
elif a == 3:
print('banana')
else:
print('shopping')
# elif 不能单独出现 用elif写出的代码更为简洁
# if 跟 else 成对出现
格式齐整,代码简洁!!!优点很明显
a和b返回真的
a or b
图片作者:buaishengqi