與小卡特一起學python 第13章 函式-積木 動手試一試

yarking207發表於2016-04-05
# 13函式 動手試一試
#13.1 編寫一個函式,用大寫字母列印你的名字。
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()) 則會出現none值

#13.2 建立一個函式,可以列印全世界人名、地址、街道、城市、州、省,郵編和國家
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 計算零錢的總值
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)

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/220205/viewspace-2075849/,如需轉載,請註明出處,否則將追究法律責任。

相關文章