def person(first_name,last_name):
"""返回乙個字典,其中包含若干人的姓名資訊"""
persons =
return persons
p = person("taylor","swift")
print(p)
def person(first_name,last_name,age = '',*** = ''):
"""返回乙個字典,其中包含若干人的姓名資訊"""
persons =
if age:
persons['age'] = age
if ***:
persons['***'] = ***
return persons
p = person("taylor","swift",age=30,***='女')
print(p)
def speak_hello(users):
for name in users:
message = "hello," + name.title() + "!"
print(message)
usernames = ['taylor swift','poppy','cam kelly']
speak_hello(usernames)
def menu(*order_dishes):
"""列印顧客點菜的名稱"""
print(order_dishes)
menu('tomato omelette','brokkoil')
menu('brokkoil','steak','brochette','tomato omelette')
menu('mutton','pork')
def huawei(**message):
"""建立乙個字典,其中包含華為手機的基本資料"""
phone_message = {}
for key,value in message.items():
phone_message[key] = value
return phone_message
message = huawei(name = '華為p30 pro',
主屏尺寸 = '6.47英吋',
主屏解析度 = '2340*1080畫素',
cpu型號 = '麒麟980',
螢幕型別 = '全面屏',
rom容量 = '128gb/256gb/512gb')
print(message)
Python函式的應用1
一 向列表新增元素的函式 主要是用於向列表中新增元素,但不能同時新增多個元素。向列表的末尾新增元素 案例 1 新增乙個元素 案例 2 同時新增多個元素時,出現錯誤 2.extend 函式 該函式是向乙個列表來擴充套件成另乙個列表,即它的引數是乙個列表。向列表的末尾新增元素 案例 3 同時新增多個元素...
python中 函式的應用
1 什麼是函式?函式就像是專門做事的人,我們呼叫它來做一些事,他可能需要我們提供一些資訊,他在完成事情後可能會有一些執行結果給我們。2 函式的定義與呼叫 定義語法 def 函式名 引數 塊 return 表示式 呼叫函式 呼叫函式很簡單的,通過 函式名 即可完成呼叫 3 命名規則 方法名開頭大寫,引...
python 偏函式應用
摘要 python的設計核心原則就是簡潔 在這種原則的指導下,誕生了lambda表示式和偏函式 二者都讓函式呼叫變得簡潔。本文主要為你介紹偏函式的應用。如果我們定義了乙個函式,比如說將四個數相加add one two,three,four 上層有很多函式需要呼叫這個函式。在這些呼叫中,80 的呼叫傳...