| |
>
左边比右边大<
左边小于右边==
左边等于右边!=
左边不等于右边func run():
var health = 100
if health > 5:
print("health is greater than five.")
if 1 < health:
print("One is less than health.")
if health == health:
print("health is equal to health")
if health != 7:
print("health is not equal to seven.")
下面程序实现了当程序运行时,添加的数值大于指定的血量的时候,则重置变量为指定血量,防止超出设定范围。
health = 60
func heal(amount):
health += amount
if health > 80:
health = 80
heal(15) #75
heal(15) #80
如果编写条件语句代码未来需要该代码,但是目前又不想写什么,可以使用pass关键词,让程序运行的时候自动跳过,以保证不会报错。
if health < 70:
pass
系列课程并未全部上架,处于先行测试阶段