Chinaunix首页 | 论坛 | 博客
  • 博客访问: 2175031
  • 博文数量: 104
  • 博客积分: 206
  • 博客等级: 入伍新兵
  • 技术积分: 1829
  • 用 户 组: 普通用户
  • 注册时间: 2012-09-12 10:24
个人简介

效字当先,以质为本。测试开发入行十余年,辉煌过,迷茫过,持续探寻人生的激情和前进的步伐!好好生活,认真工作!

文章分类
文章存档

2024年(1)

2019年(2)

2018年(4)

2017年(7)

2016年(3)

2015年(14)

2014年(33)

2013年(31)

2012年(9)

分类: Python/Ruby

2013-08-21 15:41:02

先举一个例子:
def eggs_and_bread(eggs_num,bread_pieces):
    print "I have %d eggs" %eggs_num
    print "I have %d pieces of bread" %bread_pieces
print eggs_and_bread(10,20)                                   


print eggs_and_bread(10+1,20+4)                        


amout_of_eggs = 100
amout_of_bread =200
print eggs_and_bread(amout_of_eggs,amout_of_bread)


print eggs_and_bread(amout_of_eggs+4,amout_of_bread+8)

注:我们可以在函数里用变量名,我们可以在函数里做运算,我们甚至可以将
变量和运算结合起来;

阅读(1155) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~