first作業 三次登入

2022-05-21 21:48:12 字數 1693 閱讀 9710

1

'''2

1、使用while迴圈輸入 123

4568

91034

2、求1-100的所有數的和56

3、輸出 1-100

內的所有奇數78

4、輸出 1-100

內的所有偶數910

5、求1-2+3-4+5

... 99的所有數的和

1112

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

13'''

14 #1、使用while迴圈輸入 123

4568

91015 # count = 1

16 # while count < 11

:17 # if count == 7

:18 # count += 1

19# print(count)

20 # count += 1

2122 #3、輸出 1-100

內的所有奇數

23 # count = 1

24 # while count < 101:25

# print(count)

26 # count += 2

2728 #5、求1-2+3-4+5

... 99的所有數的和

29 # sum = 0

30 # count = 1

31 # while count < 100

:32 # if count % 2 == 0

:33 # sum -=count

34 # else

:35 # sum +=count

36 # count += 1

37# print(sum)

38'''

39 li = [,

40 ,

41 ,42]

43#客戶輸入了三次機會,都沒成功,給它乙個選擇,讓它在試試

44 # y 再給他三次機會...不輸入了,print('

臭不要臉.....')

45'''

46 li = [,

47 ,

48 ,49]

50 j = 0

51while j < 3

:52 username = input('

姓名:'

)53 password = input('

密碼:')54

for i in

li:55

if username == i['

username

'] and password == i['

password']:

56 print('

登入成功')

57 j = 3

58break

59else

:60 print('

登入不成功,請重新輸入')

61if j == 2

:62 choice = input('

是否在試試?y')

63if choice == 'y'

:64 j = -1

65 j += 1

Python作業之三次登入

d consumer login.txt zhangsan 123 wangwu a324 lisi li123 accountlist pwdlist blacklist sign true while sign username input 親輸入使用者名稱 讀取賬戶和密碼 with open ...

使用者登入三次,禁止登入

1 defmenu 2 使用者互動介面 3 user name input 請輸入在使用者名稱 4 password input 請輸入密碼 5return user name,password 以元組形式返回值 6 7alex1 1111 8alex2 2222 9alex3 3333 10 11...

使用者登入(三次機會)

輸入輸出 示例 1 kate 666666 登入成功!示例 2 kate 123alice 456john 111111 3次使用者名稱或者密碼均有誤!退出程式。i 0 success 0 for i in range 3 name input password input if name kate...