编程语言
首页 > 编程语言> > Python 光速入门 7:Python if 是否逻辑 判断条件语句入门- YDOOK

Python 光速入门 7:Python if 是否逻辑 判断条件语句入门- YDOOK

作者:互联网


Python :从小白到大神之路 YDOOK.COM


Python if 是否逻辑 判断条件语句入门

if : 单行语法格式:

if judgement_condiction:
	yes condiction execute command
	

在这里插入图片描述

N.B.: if 语句与 if 下执行语句不能同样顶格写或者同样开头距离写,执行语句必须比 if 判断语句隔开一个空格,否则解释器解释语法错误。


if-else: 双行语法格式:

if judgement_condiction:
	yes condiction execute command
else:
	yes condiction execute command
	

在这里插入图片描述


if-elif-elif-elif-else : 多行语法格式:

if condicton 1:
	execute line 1
elif condiction 2:
	execute lin2
elif condiction 3:
	execute line3
...
else:
	execute line N

在这里插入图片描述



YDOOK 发布了217 篇原创文章 · 获赞 29 · 访问量 3万+ 私信 关注

标签:语句,elif,入门,Python,execute,else,YDOOK,condiction
来源: https://blog.csdn.net/weixin_42255190/article/details/104517428