Python if-else and while

Posted 庖丁解牛

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python if-else and while相关的知识,希望对你有一定的参考价值。

if-elif语法

if condition:
[tab键] command
elif condition:
[tab键] command
elif condition:
[tab键] command
else:
[tab键] command


while语法

while condition:
[tab键] command


if嵌套

if condition:
[tab键] command
[tab键] if condition:
[tab键] [tab键] command
[tab键] else:
[tab键] [tab键] command
else:
[tab键] command
#-*- coding:utf-8 -*-

#双循环打印矩形

#矩形长度是7,宽度是5

i = 0
j = 0

while i < 5:
        j = 0
        while j < 7:
                if (i == 0) or (i == 4):
                        #这种end=""不换行操作是python3.x版本支持的,python2.x下会报错
                        print("*",end=\'\')
                else:
                        if (j == 0) or (j == 6):
                                print("*",end = "")
                        else:
                                print(" ",end=\'\')
                j += 1
        print("")
        i += 1

以上是关于Python if-else and while的主要内容,如果未能解决你的问题,请参考以下文章

python基础5 if-else流程判断,for循环和while循环

WPF Datagrid contains ComboBox while display textblock when display and combobox in editing mode(示例代

If / else and while分支在Mono.Cecil中

教妹学Java:图解流程控制语句

Python基础语法—— 条件语句(if)+循环语句(for+while)

if-else和while循环