python习题18
Posted shadowyuriya
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python习题18相关的知识,希望对你有一定的参考价值。
# this one is like your scripts with argv def print_two(*args): arg1, arg2 = args print(f"arg1: {arg1}, arg2: {arg2}") # ok, that *args is actually pointless, we can just do this def print_two_again(arg1, arg2): print(f"arg1: {arg1}, arg2: {arg2}") # this just takes one argument def print_one(arg1): print(f"arg1: {arg1}") #this just takes no arguments def print_none(): print("‘I got nothin‘.") print_two("Zed","Shaw") print_two_again("Zed","Shaw") print_one("First!") print_none()
以上是关于python习题18的主要内容,如果未能解决你的问题,请参考以下文章