gpt4 book ai didi

python - 如何猜测用户输入的 4 位密码(我们不知道)?

转载 作者:太空宇宙 更新时间:2023-11-04 07:10:28 24 4
gpt4 key购买 nike

有人可以解释一下如何在 python 中执行此操作吗?这个想法是找出用户输入的 4 位数代码(例如:3968)。如何设计一种算法来找到这个?这是我得到的……:

code=int(input("Enter 4 digit secret code:"))
count=0000
while(count!=code):
count=count+1
print("Your code was",count)

这完美地工作......除了代码以 0 开头......例如:0387它打印“你的代码是 387”作为 0387

有什么快速解决方法?

最佳答案

print("Your code was %04i" % count)

% 表示这里有一个变量。04 表示将其零填充为四个字符。i 表示它是一个整数。 Docs here.

替代版本,使用新的,更灵活.format() formatting :

print("Your code was {:04n}".format(count))

关于python - 如何猜测用户输入的 4 位密码(我们不知道)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13222738/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com