鱼C论坛

 找回密码
 立即注册
查看: 1317|回复: 3

[已解决]大佬,求帮助!!!

[复制链接]
发表于 2020-8-6 21:51:52 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
password = list(input("please input your password: "))
times = 3
i = 0
length = len(password)
realpassword = list("chen")
while password[i] == "*" and i <= length:
    password = list(input("密码中不能含有“*”号,你还有",times,"次机会,请输入密码:"))
while times > 0 and password != realpassword:
    times -= 1
    password = list(input("密码错误,你还有",times,"次机会:"))
if password == realpassword:
    print("密码正确,进入程序。。。")
else:
    print("密码错误,机器锁死")


运行程序后是这样
please input your password: 123456
Traceback (most recent call last):
  File "D:/python/009-01.py", line 10, in <module>
    password = list(input("密码错误,你还有",times,"次机会:"))
TypeError: input expected at most 1 argument, got 3
>>>
最佳答案
2020-8-6 23:43:44

input 里面用格式化,你不能直接 , 逗号隔开,不然 Python 会认为你传入 3 个参数给 input 函数了,而 input 函数只能接受一个参数导致报错

正确代码,使用 字符串格式化即可,这里用 % 格式化:
password = list(input("please input your password: "))
times = 3
i = 0
length = len(password)
realpassword = list("chen")
while password[i] == "*" and i <= length:
    password = list(input("密码中不能含有“*”号,你还有%s次机会,请输入密码:"%times))
while times > 0 and password != realpassword:
    times -= 1
    password = list(input("密码错误,你还有%s次机会:"%times))
if password == realpassword:
    print("密码正确,进入程序。。。")
else:
    print("密码错误,机器锁死")
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-8-6 22:00:17 | 显示全部楼层
input只能有一个参数,就是提示作用的字符串,你却给出了三个参数。。
正常的写法应该是
input("密码错误,你还有%d次机会:"%times)
这样写,input函数只有一个参数,是一个字符串,只是字符串中有格式化字符。你的那种写法,会被认为是三个参数
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 1 反对 0

使用道具 举报

发表于 2020-8-6 23:43:44 | 显示全部楼层    本楼为最佳答案   

input 里面用格式化,你不能直接 , 逗号隔开,不然 Python 会认为你传入 3 个参数给 input 函数了,而 input 函数只能接受一个参数导致报错

正确代码,使用 字符串格式化即可,这里用 % 格式化:
password = list(input("please input your password: "))
times = 3
i = 0
length = len(password)
realpassword = list("chen")
while password[i] == "*" and i <= length:
    password = list(input("密码中不能含有“*”号,你还有%s次机会,请输入密码:"%times))
while times > 0 and password != realpassword:
    times -= 1
    password = list(input("密码错误,你还有%s次机会:"%times))
if password == realpassword:
    print("密码正确,进入程序。。。")
else:
    print("密码错误,机器锁死")
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-8-7 10:19:58 | 显示全部楼层
Twilight6 发表于 2020-8-6 23:43
input 里面用格式化,你不能直接 , 逗号隔开,不然 Python 会认为你传入 3 个参数给 input 函数了,而 in ...

或者用format~
password = list(input("please input your password: "))
times = 3
i = 0
length = len(password)
realpassword = list("chen")
while password[i] == "*" and i <= length:
    password = list(input("密码中不能含有“*”号,你还有%s次机会,请输入密码:"%times))
while times > 0 and password != realpassword:
    times -= 1
    password = list(input("密码错误,你还有{0}次机会:".format(times)))
if password == realpassword:
    print("密码正确,进入程序。。。")
else:
    print("密码错误,机器锁死")
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-19 14:25

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表