首页 > 编程语言 > 详细

Python基础

时间:2018-04-29 01:01:33      阅读:205      评论:0      收藏:0      [点我收藏+]
技术分享图片
1 def 函数名(参数列表):
2     函数体
3     
4 def hello():
5     print(hello)
6 hello()#调用
View Code
1 def 函数名(参数列表):
2     函数体
3     
4 def hello():
5     print(hello)
6 hello()#调用
def 函数名(参数列表):
    函数体
    
def hello():
    print(hello)
hello()#调用

 

def 函数名(参数列表):
    函数体
    
def hello():
    print(hello)
hello()#调用
1 def 函数名(参数列表):
2     函数体
3     
4 def hello():
5     print(hello)
6 hello()#调用
def 函数名(参数列表):
    函数体
    
def hello():
    print(‘hello‘)
hello()#调用

  

def 函数名(参数列表):
    函数体
    
def hello():
    print(‘hello‘)
hello()#调用

  

Python基础

原文:https://www.cnblogs.com/folishJ/p/8970045.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!