SHUgram 发表于 2021-1-7 01:16:32

009讲 动动手中 第0题 加了if time = 0 不行

temp = input('please,enter your password')
password = 'fucking python'
time = 2
while time >= 1:
    if temp == password:
      print('you are right,system are loading')
      break
    elif not '*'in temp:
      print('you are wrong and you only have',time,'chances')
      temp = input('please try again ')
      time -=1
    else:
      print('* is not allowed appearing in the password and you have',time,'chances')
      temp = input('plesase, try again without *')
if time = 0:
    print('self-destruct system activated')
为啥if time = 0 这个不行

qq1151985918 发表于 2021-1-7 01:53:24

判断条件要用两个== 等号,一个等号是赋值

SHUgram 发表于 2021-1-7 04:11:40

qq1151985918 发表于 2021-1-7 01:53
判断条件要用两个== 等号,一个等号是赋值

谢谢,我傻了

心驰神往 发表于 2021-1-7 09:44:51

SHUgram 发表于 2021-1-7 04:11
谢谢,我傻了

问题解决了给人家最佳答案啊

心驰神往 发表于 2021-1-7 11:10:52

心驰神往 发表于 2021-1-7 09:44
问题解决了给人家最佳答案啊

举手之劳而已,自己又没有损失,就这都不愿意。不知道咋想的

z5560636 发表于 2021-1-7 13:05:01

心驰神往 发表于 2021-1-7 11:10
举手之劳而已,自己又没有损失,就这都不愿意。不知道咋想的

{:5_109:} 估计是不会用吧。

心驰神往 发表于 2021-1-7 13:10:32

z5560636 发表于 2021-1-7 13:05
估计是不会用吧。

不知道啊{:10_256:}

z5560636 发表于 2021-1-7 13:11:22

心驰神往 发表于 2021-1-7 13:10
不知道啊

{:10_256:}    灌会水,握爪。

心驰神往 发表于 2021-1-7 13:13:49

z5560636 发表于 2021-1-7 13:11
灌会水,握爪。

灌水还是吹水阁{:5_109:}
页: [1]
查看完整版本: 009讲 动动手中 第0题 加了if time = 0 不行