您好,登录后才能下订单哦!
本篇内容介绍了“python函数该怎么用”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!
# 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)
“python函数该怎么用”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注亿速云网站,小编将为大家输出更多高质量的实用文章!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。