码迷,mamicode.com
首页 > 编程语言 > 详细

Python 函数的三种定义方式

时间:2017-07-21 10:48:03      阅读:297      评论:0      收藏:0      [点我收藏+]

标签:cmd   函数   strip()   style   用户   最大值   打印   span   split()   

无参:应用场景仅仅只是执行一些操作,比如与用户交互,打印
有参:需要根据外部传进来的参数,才能执行相应的逻辑,比如统计长度,求最大值最小值
空函数:设计代码结构

def my_max(x,y):
    if x > y:
        # print(x)
        return x
    else:
        # print(y)
        return y

res=my_max(1,2)
print(res)

res=max(1,2)
print(res)

def foo():
    print(-=----)
    return 123
    print(-=----)
    print(-=----)
    print(-=----)
foo()

def main():
while True:
sql=input(‘>>: ‘).strip()
if not sql:continue
cmd_info=sql.split()
cmd=cmd_info[0]


if cmd == ‘select‘:
select(cmd_info)



main()

 

 

Python 函数的三种定义方式

标签:cmd   函数   strip()   style   用户   最大值   打印   span   split()   

原文地址:http://www.cnblogs.com/liuxiaowei/p/7215592.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!