博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python Fuction 方法的调用
阅读量:6713 次
发布时间:2019-06-25

本文共 446 字,大约阅读时间需要 1 分钟。

def display():#无参数	print("No")	return# display()def callfun():#调用	print("2")	display()	returncallfun()def message(name): #一个参数	print('Hello:'+name)	returnmessage('NanJing')#调用message('BeiJing')def message(greeting,name):#两个参数	return greeting+","+namemsg=message('Hello','Jack')show=message('Hello','Ma')print(msg)#调用print(show)def Add(a,b):#两参数	c=int(a)+int(b)	print(c)	returnAdd(10,20)#调用

  

转载于:https://www.cnblogs.com/huchaoheng/p/8120133.html

你可能感兴趣的文章
组合选择器
查看>>
Understanding Angular’s $apply() and $digest()
查看>>
HTML之列表
查看>>
Global.asax文件说明
查看>>
(十六)SpringBoot之使用 Caching- - EhCache
查看>>
ubuntu制作apt源
查看>>
理解Java常量池
查看>>
JVM调优总结-调优方法
查看>>
微信小程序 watch监听数据变化 类似vue中的watch
查看>>
u检验、t检验、F检验、X2检验 (转)
查看>>
不可不知的Python模块: collections
查看>>
PAT 1066. Root of AVL Tree (25)
查看>>
细说多线程之Thread与Runnable
查看>>
【Codeforces #134 Div2】Solutions 【Updated】
查看>>
数据库优化案例——————某知名零售企业ERP系统
查看>>
计算月份差方法封装
查看>>
setsockopt 设置socket 详细用法
查看>>
抽象工厂不同接口反射
查看>>
hdu1052
查看>>
服务器端推送技术
查看>>