python第一天作業

2022-09-13 22:54:29 字數 1499 閱讀 5006

使用while迴圈輸入 1 2 3 4 5 6     8 9 10

1 x =0

2while x < 10:

3 x = x + 1

4if x == 7:

5print('')

6else:7

print

(x)8

求1-100的所有數的和

1 x = 1

2 y =0

3while x <= 100:

4 y = y +x

5 x = x + 1

6print(y)

輸出 1-100 內的所有奇數

1 x =0

2while x <= 100:

3if x % 2 !=0:

4print

(x)5 x = x + 1

輸出 1-100 內的所有偶數

1 x =0

2while x <= 100:

3if x % 2 ==0:

4print

(x)5 x = x +1

求1-2+3-4+5 ... 99的所有數的和

1 x = 1

2 y =0

3while x < 100:

4if x % 2 !=0:

5 y = y +x

6else

:7 y = y -x

8 x = x + 1

9print(y)

使用者登陸(三次機會重試)

1 user = '

lan'

2 passwd = '

123456

'3 count =0

4while count < 3:

5 user_str = input('

請輸入使用者名稱: ')

6 passwd_str = input('

請輸入密碼: ')

7if user == user_str and passwd ==passwd_str:

8print('

登入成功')

9break

10elif user !=user_str:

11print('

使用者名稱不存在')

12 count = count + 1

13continue

14elif user == user_str and passwd !=passwd_str:

15print('

密碼錯誤')

16 count = count + 1

17continue

18if count > 2:

19print('

已錯3次,請明天再試')

20

第一天作業

1 a float input enter a degree in celsius b 9 5 a 32 print a,celsius is b,fahrenheit 2 banjing,gao map float,input 請輸入半徑和高 split banjing float input 請...

第一天作業

筆記本 1.功能上 筆記本的重量 筆記本的型號 筆記本的拆卸 筆記本是否能上網 筆記本是否能正常重啟 2.介面上 筆記本的款式 華碩,蘋果,聯想,戴爾,惠普,華為,thinkpad 筆記本的亮度 筆記本的按鈕 筆記本的內屏的型號 3.效能上 筆記本耗電程度 筆記本續航時間 筆記本散熱是否正常 筆記本...

第一天作業

為什麼是三次握手?為了防止已經失效的連線請求報文段又突然傳到服務端,因而產生錯誤。a傳送的乙個連線請求在網路結點的時間滯留,以至於延誤到連線釋放的某個 時間才到達b。b收到這個請求的報文段後,誤以為a又發出了一次新的請求連線,於是向a傳送確認報文段,同一建立連線。但是由於a並沒有發出新的請求連線,所...