python学习之--流程和函数

简要介绍python的流程和函数

python里面是没有switch的,其实switch是有一个hash表通过表来查找对应的跳转

例如:

switch = {
    1:'a',
    2:'b',
    3:'c',
    4:'d'
    }

s = [1,2,3,4]

for i in range(1,5) :
    print(switch.get(i))

条件判断

a=-1

if a>0:
    print(1)
elif a==0:
    print(2)
else:
    print(3)
循环

for

for i in [1,2,3,4,5]:
    print(i)

for i in range(1,10,2):
    print(i)

while

i=10
while i>0:
    i=i-1
    print(i)

函数

def func():
    print('this is a function')

func()
函数作为参数传递

def childFunc():
    return 1
def fatherFunc(f):
    print(f)

fatherFunc(childFunc())









评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值