91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

二、流程控制之while循環與for循環

發布時間:2020-07-31 11:35:07 來源:網絡 閱讀:301 作者:a120518129 欄目:編程語言

1 什么是循環
    循環就是一個重復的過程

2 為何要有循環
    人可以重復的去做某一件事
    程序中必須有一種機制能夠控制計算機像人一樣重復地去做某一件事

3 如何用循環

# 語法
# while 條件:
#     code1
#     code2
#     code3
#     ...

一、while 循環

while True:
    inp_user=input('please input your username: ')
    inp_pwd=input('please input your password: ')
    if inp_user == "user" and inp_pwd == "123":
        print('login successfull')
    else:
        print('user or password err')

# while + break: break代表結束本層循環

while True:
    inp_user=input('please input your username: ')
    inp_pwd=input('please input your password: ')
    if inp_user == "user" and inp_pwd == "123":
        print('login successfull')
        break
    else:
        print('user or password err')

# while+continue:continue代表結束本次循環(本次循環continue之后的代碼不在運行),直接進入下一次循環
# 強調:continue一定不要作為循環體的最后一步代碼

start=1
while start < 8: #5 < 8
    if start == 4:
        start += 1 #start=5
        continue
    print(start)
    start+=1
user_from_db='egon'
pwd_from_db='123'
while True:
    inp_user=input('please input your username: ')
    inp_pwd=input('please input your password: ')
    if inp_user == user_from_db and inp_pwd == pwd_from_db:
        print('login successfull')
        break
    else:
        print('user or password err')
        continue

#while循環的嵌套

user_from_db='egon'
pwd_from_db='123'
while True:
    inp_user=input('please input your username: ')
    inp_pwd=input('please input your password: ')
    if inp_user == user_from_db and inp_pwd == pwd_from_db:
        print('login successfull')
        while True:
            cmd=input('>>>: ') # cmd='quit'
            if cmd == 'quit':
                break
            print('%s run......' %cmd)
        break
    else:
        print('user or password err')

給tag打標:

user_from_db='egon'
pwd_from_db='123'
tag=True
while tag:
    inp_user=input('please input your username: ')
    inp_pwd=input('please input your password: ')
    if inp_user == user_from_db and inp_pwd == pwd_from_db:
        print('login successfull')
        while tag:
            cmd=input('>>>: ') # cmd='quit'
            if cmd == 'quit':
                tag=False
                break
            print('%s run......' %cmd)
    else:
        print('user or password err')

# while + else
# else的代碼會在while循環沒有break打斷的情況下最后運行

n=1
while n < 5:
    if n == 4:
        break
    print(n)
    n+=1
else:
    print('=====》')

密碼數錯3次程序退出

user_from_db='egon'
pwd_from_db='123'

count=0
tag=True
while tag:
    if count == 3:
        print('輸錯次數過多')
        break
    inp_user=input('please input your username: ')
    inp_pwd=input('please input your password: ')
    if inp_user == user_from_db and inp_pwd == pwd_from_db:
        print('login successfull')
        while tag:
            cmd=input('>>>: ') # cmd='quit'
            if cmd == 'quit':
                tag=False
                break
            print('%s run......' %cmd)
    else:
        print('user or password err')
        count+=1 #count=3 # 輸錯3次

二、流程控制之for循環

names=['egon','alex_dsb','lxx_sb','yxx_dsb']
i=0
while i < len(names): #4 < 4
    print(names[i])
    i+=1

# for循環:可以不依賴索引而取指

names=['egon','alex_dsb','lxx_sb','yxx_dsb']
for item in names: #item='lxx_sb'
    print(item)
dic={'x':1,'y':2,'z':3}
for k in dic: #k='x'
    print(k,dic[k])

# for vs while
# for可以不依賴于索引取指,是一種通用的循環取指方式
# for的循環次數是由被循環對象包含值的個數決定的,而while的循環次數是由條件決定的

names=['egon','alex_dsb','lxx_sb','yxx_dsb']
for i in range(0,len(names)):
    print(names[i])

# for+break
# for+continue

# for+else

for i in range(10):
    if i == 4:
        break
    print(i)
else:
    print('====>')

練習

'''
1*1=1
2*1=2 2*2=4
3*1=3 3*2=6 3*3=9
...
9*1=9.................9*9=81
'''

 for i in range(1,10): #i=3
     for j in range(1,i+1):
         print('%s*%s=%s ' %(i,j,i*j),end='') #i=2 j=2
     print()

'''            max_level=5
    *          current_level=1 空格數=4 星號=1
   ***         current_level=2 空格數=3 星號=3
  *****        current_level=3 空格數=2 星號=5
 *******       current_level=4 空格數=1 星號=7
*********      current_level=5 空格數=0 星號=9
'''

max_level=10
for current_level in range(1,max_level+1):
    # 先不換行打印打印空格
    for x in range(max_level-current_level):
        print(' ',end='')
    # 再不換行打印*
    for y in range(2*current_level - 1):
        print('*',end='')
    print()




向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

沙雅县| 吕梁市| 吉安市| 万宁市| 汝阳县| 昌宁县| 土默特左旗| 衢州市| 怀集县| 溧水县| 东丰县| 宕昌县| 县级市| 巩留县| 东安县| 安达市| 阿拉尔市| 襄城县| 交城县| 出国| 南康市| 六盘水市| 玉山县| 阜康市| 辽宁省| 巢湖市| 云南省| 丰宁| 澎湖县| 林西县| 张北县| 洮南市| 阳山县| 清远市| 江陵县| 连平县| 仁寿县| 海南省| 芜湖县| 塔河县| 通道|