5-快速入門Python函式使用

最近很菜機發表於2020-12-20
#下面我們來快速入門Python中的怎樣寫出自己的函式
#函式
#引數 返回值 函式體

#無引數
def helloworld():
    print("hello world")

#呼叫helloworld()函式
helloworld()


#有引數的函式
def name(name):
    print(name)



#未知引數
def future(*items):
    for item in items:
        print(item)
#呼叫future函式
future(12,4343,545,"dfs","try it")

#字典與函式
def user(**user):
    print(user)
#呼叫user函式
user(id=1,name="join",age=19)
#將會輸出
#{'id': 1, 'name': 'join', 'age': 19}

相關文章