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)
《笨办法学python》习题19:函数和变量
最新推荐文章于 2022-12-26 00:59:54 发布