《笨办法学python》习题19:函数和变量

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/skyejy/article/details/79650005
def cheese_and_crackers(chess_count,boxes_of_crackers):
    print "you have %d cheeses" %cheese_count
	print "you have %d boxes of crackers!" %boxes_of_crackers
	print "Man that's enough for a party!"
	print "get a blanket.\n"
	
	
print "we can just give the function numbers directly:"
cheese_and_crackers(20,30)


print"OR,we can use variables from our script:"
amount_of_cheese=10
amount_of_crackers=50

cheese_and_crackers(amount_of_cheese,amount_of_crackers)

print "we can even do math inside too:"
cheese_and_crackers(10+20,5+6)

print "and we can combine the two,variables and math:"
cheese_and_crackers(amount_of_cheese+100,amount_of_crackers+1000)

猜你喜欢

转载自blog.csdn.net/skyejy/article/details/79650005