马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
想问一下这个报错是什么原因
#this one is like your scripts with argv
def print_two(*args):
arg1,arg2=args
print("arg1:%r,arg2:%r"%(arg1,arg2))
#ok,that*args is actually pointless,we can just do this
def print_two_again(arg1,arg2):
print("arg1:%r,arg2:%r"%(arg1,arg2))
#this one takes no arguments
def print_one():
print("I got nothin.'")
print_two("Zed","Shaw")
print_two_again("Zed","Shaw")
print_one("First!")
print_none()
这个错误的意思是你在调用 print_one 这个函数的时候给了一个参数,但是在定义 print_one 这个函数的时候,你没有定义相应的形参,
简单地说,函数定义中的参数是你需要传递给函数的数据。在这个案例中, print_one 函数不需要任何参数,也就是说,在调用这个函数的时候,你不应该传递任何数据给它。
所以,你应该像这样调用 print_one 函数:
你的错误是在这行代码中:
你给 print_one 函数传递了 "First!" 这个参数,但是 print_one 并不接受任何参数。
|