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

PyThon3函数的使用

时间:2019-09-10 22:08:01      阅读:88      评论:0      收藏:0      [点我收藏+]

标签:str1   col   python3   python   fun   class   style   div   hello   

代码:

def fun1():
    print("hello")
    
def fun2(str):
    str += "!"
    return str
 
def fun3(str="hello!"):
    print(str)
 
def fun4(str1, str2=":", *args):
    print(str1+str2, args)
 
 
if __name__ == __main__:
    fun1()
    str = fun2("hello")
    print(str)
    fun3("hi!")
    fun3()
    fun4("num",":", 1,2,3,4,5
 

运行结果:

hello
hello!
hi!
hello!
num: (1, 2, 3, 4, 5)

 

PyThon3函数的使用

标签:str1   col   python3   python   fun   class   style   div   hello   

原文地址:https://www.cnblogs.com/jumpkin1122/p/11503245.html

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