【笨方法学python】ex18 - 命名、变量、代码、函数

代码如下:

点击查看代码
# -*-coding:utf-8- -*-
# 命名、变量、代码、函数

# 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 just takes one argument
def print_one(arg1):
	print "arg1: %r" % arg1

# this one takes no arguments
def print_none():
	print "I got nothing'."	

print_two("Zed","Shaw")
print_two_again("Zed","Shaw")
print_one("First!")
print_none()

执行结果:
image

posted @ 2022-10-05 07:41  TiramisuPS  阅读(17)  评论(0编辑  收藏  举报