本篇內(nèi)容介紹了“python函數(shù)該怎么用”的有關(guān)知識,在實(shí)際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!
網(wǎng)站建設(shè)哪家好,找創(chuàng)新互聯(lián)!專注于網(wǎng)頁設(shè)計(jì)、網(wǎng)站建設(shè)、微信開發(fā)、成都微信小程序、集團(tuán)企業(yè)網(wǎng)站建設(shè)等服務(wù)項(xiàng)目。為回饋新老客戶創(chuàng)新互聯(lián)還提供了阜康免費(fèi)建站歡迎大家使用!
# 13函數(shù)
#13.1 編寫一個函數(shù),用大寫字母打印你的名字。
def printName():
print(" CCCC A RRRRR TTTTTTT EEEEEE RRRRR")
print(" C C A A R R T E R R")
print("C A A R R T EEEEEE R R")
print(" C AAAAAAAAA RRRRRR T E RRRRRR")
print(" C CA A R R T E R R")
print(" CCCC A AR R T EEEEEE R R")
print()
for i in range(5):
printName() #若是加print(printName()) 則會出現(xiàn)none值
#13.2 建立一個函數(shù),可以打印全世界人名、地址、街道、城市、州、省,郵編和國家
def printAdress(name,address,street,city,code,country):
print(name)
print(address)
print(street)
print(city)
print(code)
print(country)
printAdress("jack","303#","NO1","North","01001","RUSSIA")
#13.3 13-7列子,要求my_price是全局變量
def calculateTax(price,tax_rate):
total = price +(price * tax_rate)
global my_price
my_price = 1000
print("my_price (inside function) = ",my_price)
return total
my_price = float (input("Enter a price:"))
totalPrice = calculateTax(my_price,0.06)
print("price = ",my_price,"Total price = ", totalPrice)
print("my_price (outside function) =",my_price)
#13.4 計(jì)算零錢的總值
def countNo(quarters,dimes,nickels,pennies):
total = quarters * 5 +dimes * 2 + nickels *1 +pennies
return total #返回值
quarters = int(input())
dimes = int(input())
nickels= int(input())
pennies = int(input())
total = countNo(quarters,dimes,nickels,pennies)
print(total)
“python函數(shù)該怎么用”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!