标签:运算 init python基础 lan interface col continue 运算符优先级 port
安装python3,版本要求>=3.6
了解python的运行
启动python-IDLE,并运行 print(‘hello world‘)
预习内容请自行完成
教程推荐
基础语法规则
#
完成以下练习
自行安装 HeroVision-IDE
数据类型
f-string
>>> name = ‘Runoob‘
>>> f‘Hello {name}‘ # 替换变量
>>> f‘{1+2}‘ # 使用表达式
‘3‘
>>> w = {‘name‘: ‘Runoob‘, ‘url‘: ‘www.runoob.com‘}
>>> f‘{w["name"]}: {w["url"]}‘
‘Runoob: www.runoob.com‘
算术运算符:%, //, **
比较运算符:==, !=, >, <, >=, <=
赋值运算符:=, +=, -=, *=, /=, %=
海象运算符: :=
if (n := len(a)) > 10:
print(f"List is too long ({n} elements, expected <= 10)")
逻辑运算符
流程控制
if
while ... else ...
count = 0
while count < 5:
print (count, " 小于 5")
count = count + 1
else:
print (count, " 大于或等于 5")
for
pass, continue, break
模块/包的定义与载入
异常机制:Exception
面向对象(了解)
标签:运算 init python基础 lan interface col continue 运算符优先级 port
原文地址:https://www.cnblogs.com/brt2/p/13841922.html