Python流程控制与函数

if

>>> x = int(raw_input("Please enter an integer:")) 
Please enter an integer:42
>>> if x < 0:
...     x = 0
...     print "变为0"
... elif x == 0:
...     print "0"
... elif x == 1:
...     print "Single"
... else:
...     print "More"
... 
More

for

# Measure some strings:
a = ['cat', 'window', 'defenestrate']
for x in a:
    print x, len(x)

range() 函数

>>> range(10)
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
>>> range(5,10)
[5, 6, 7, 8, 9]
>>> range(0,10,3)
[0, 3, 6, 9]
a = ['PHP', 'Java', 'Python']
for i in range(len(a)):
    print i, a[i]

break continue

break用于跳出最近的一个for

定义函数

>>> def fib(n):
...     a,b = 0,1
...     while a<n:
...             print a,
...             a,b = b,a+b
... 
>>> fib(100)
0 1 1 2 3 5 8 13 21 34 55 89
>>> f = fib
>>> f(100)
0 1 1 2 3 5 8 13 21 34 55 89

带参数的函数

def ask_ok(prompt, retries=4, complaint='Yes or no,please!'):
    while True:
        ok = raw_input(prompt)
        if ok in ('y', 'ye', 'yes'):
            return True
        if ok in ('n', 'no'):
            return False
        retries = retries - 1
        if retries < 0:
            raise IOError('refuse user')
        print complaint


ask_ok('yes', 5, 'Yes or no!')
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值