一、使用while迴圈輸入 1 2 3 4 5 6 _ 7 8 9 1
count = 1while count < 11:
if count == 7:
print('')
else
:
(count)
count += 1
二、求1-100所以自然數之和
1 x = 12 s =0
3while x < 101:
4 s = s +x
5 x += 1
6print(s)
三、輸出1-100所以奇數
count = 1while count < 101:
if count % 2 == 1:
(count)
count += 1
四、輸出1-100所以偶數
count = 1while count < 101:
if count % 2 ==0:
(count)
count += 1
五、求1-2+3-4+5...99的結果
count = 1s =0while count < 100:
if count % 2 == 1:
s = s +count
else
: s = s -count
count += 1
print(s)
六、使用者登入(三次機會重試)
i =0while i < 3:
username = input('
請輸入賬號:')
password = int(input('
請輸入密碼:'))
if username == '
我愛你'
and password == 123:
print('
登陸成功')
else
:
print('
登入失敗,請重新輸入賬號密碼')
i += 1
python迴圈練習作業
1.輸出10行內容,每行的內容都是 for i in range 9 print 6 結果 2.輸出10行內容,每行的內容都不一樣,第1行乙個星號,第2行2個星號,依此類推第10行10個星號。for i in range 1 11 print i 結果 3.輸出9行內容,第1行輸出1,第2行輸出12...
SQL手注練習(作業)
sql語句 select database 獲取資料庫名稱 select user 獲取使用者名稱 select version 獲取版本 基於union的資訊獲取 union聯合查詢 通過聯合查詢來尋找指定資料 notice union聯合查詢需要與select欄位相同。語法 select use...
列表 字典練習作業
1 作業 2 usernames xiaohei xiaobai xiaoming 3 passwords 123456 11111 1 4 需要通過 把上面的兩個list轉成下面的字典5 user info 6 1 註冊7 1 輸入賬號和密碼 確認密碼8 2 要校驗賬號是否存在 從字典裡面判斷 存...