码迷,mamicode.com
首页 > 编程语言 > 详细

python习题18

时间:2018-12-01 20:16:14      阅读:237      评论:0      收藏:0      [点我收藏+]

标签:rgs   ike   *args   got   code   hat   arguments   point   less   

# 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

标签:rgs   ike   *args   got   code   hat   arguments   point   less   

原文地址:https://www.cnblogs.com/shadowyuriya/p/10050600.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!