python作業第七天

2022-04-10 20:57:52 字數 2317 閱讀 8190

count = 1

while count < 11:

if count == 7:

count += 1

continue

print(count)

count += 1

count = 1

a = 0

while count < 101:

a += count

count += 1

print(a)

count = 1

while count < 101:

if count % 2 == 1:

print(count)

count += 1

else:

count += 1

count = 1

while count < 101:

if count % 2 == 0:

print(count)

count += 1

else:

count += 1

count = 1

a = 0

while count < 100:

if count % 2 == 0:

a -= count

count += 1

else:

a += count

count += 1

print(a)

user_info = ['lance', '123']

i = 0

while i < 3:

user_name = input('請輸入您的賬號:')

user_pwd = input('請輸入您的密碼:')

if user_name == user_info[0] and user_pwd == user_info[1]:

print('登陸成功')

break

else:

i += 1

if i == 3:

print('連續三次輸入錯誤,請稍後嘗試')

break

print('賬號密碼第次輸入錯誤,請重新輸入'.format(x=i))

要求:

允許使用者最多嘗試3次,3次都沒猜對的話,就直接退出,如果猜對了,列印恭喜資訊並退出

age_info = 18

i = 0

while i < 3:

inp_age = input('請輸入您所猜測的年齡:')

if age_info == int(inp_age):

print('恭喜您猜對了')

break

else:

i += 1

if i == 3:

print('連續三次輸入錯誤,自動退出程式')

break

print('第次猜錯,請重新輸入'.format(x=i))

要求:

允許使用者最多嘗試3次

每嘗試3次後,如果還沒猜對,就問使用者是否還想繼續玩,如果回答y或y, 就繼續讓其猜3次,以此往復,如果回答n或n,就退出程式

如何猜對了,就直接退出

age_info = 18

i = 1

while i < 4:

inp_age = input('請輸入您所猜測的年齡:')

if age_info == int(inp_age):

print('恭喜您猜對了')

break

else:

print('第次猜錯,請重新輸入'.format(x=i))

i += 1

if i == 4:

print('連續三次輸入錯誤,使用者是否還想繼續嘗試?')

while true:

reply = input('您的選擇是(y或者y繼續/n或者n結束):')

if reply == 'y' or reply == 'y':

i = 1

break

elif reply == 'n' or reply == 'n':

i = 4

print('遊戲結束,請下次再玩')

break

else:

i = 3

print('輸入無效符號,請重新輸入')

continue

python基礎作業第七天

恢復內容開始 1.判斷乙個數是否是水仙花數,水仙花數是乙個三位數,三位數的每一位的三次方的和還等於這個數.那這個數就是乙個水仙花數,例如 153 1 3 5 3 3 3 sum 0 num input 請輸入乙個數字 for c in range len num sum sum int num c ...

HCIP第七天作業

四.bgp 鄰居狀態機制 idle 初始化 connect 連線 active 活動 opensent 傳送open報文 openconfirm open報文確認 established 鄰居狀態 五.bgp訊息資料報 open keepalive updata notification 1.ope...

初學Python第七天

繼上次10.10注釋,到了序列這一章,開乙個新的章節 一 通用序列操作 定義 python中序列的通用操作,在列表 list 和元組 tuple 中都會用到。基礎的8類操作種類 索引 index 分片 slice 相加 add 乘法 multiply 成員 member 長度 length 最小值 ...