溫馨提示×

溫馨提示×

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

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

Python基礎教程:range/for/break/continue簡單使用

發(fā)布時間:2020-06-22 00:05:44 來源:網(wǎng)絡 閱讀:265 作者:Python熱愛者 欄目:編程語言

range的使用:注意,在python3中,交互模式下已經(jīng)不顯示了

Python基礎教程:range/for/break/continue簡單使用

for循環(huán)的使用

打印50-70

'''
遇到問題沒人解答?小編創(chuàng)建了一個Python學習交流QQ群:857662006 
尋找有志同道合的小伙伴,互幫互助,群里還有不錯的視頻學習教程和PDF電子書!
'''
# 第一種方案
for i in range(100):
    if i <= 70 and i >= 45:   #注意這里使用的是 and/or/not  非java中的&&,||,!
        print (i)
# 第二種方案
for i in range(50,71):
    print (i)

break/continue的使用

'''
遇到問題沒人解答?小編創(chuàng)建了一個Python學習交流QQ群:857662006 
尋找有志同道合的小伙伴,互幫互助,群里還有不錯的視頻學習教程和PDF電子書!
'''
exit_Flag = False
for i in range(100):
    if i < 5:
        continue
    print("L_1:",i)
    for j in range(10):
        print("layer2:",j)
        if j == 7:
            exit_Flag=True
            break
    if exit_Flag:
        break

用戶登錄小程序

'''
遇到問題沒人解答?小編創(chuàng)建了一個Python學習交流QQ群:857662006 
尋找有志同道合的小伙伴,互幫互助,群里還有不錯的視頻學習教程和PDF電子書!
'''
_user="hhh"
_pass="hello"
count = 1
while count <= 3:
    username = input("Please input the username:")
    password = input("Please input the password:")
    if _pass == password and _user == username:
        print("Welcome to BBT,", username)
        break
    else:
        print()
        print("Invalid username or password,you still have " + str(3 - count) + " times")
    count += 1
else:
    print("Time out,~-~")
向AI問一下細節(jié)

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

AI