黑馬程序員python教程,8天python從入門到精通,學python看這套就

#黑馬程序全課程案例(持續(xù)更新中......) #P40【猜數(shù)游戲】 #引入隨機數(shù)生成模塊 import random #設置隨機數(shù)生成范圍(min——max) number_min=int(input("輸入想猜測數(shù)的最小值:")) number_max=int(input("輸入想猜測數(shù)的最大值:")) freedom=random.randint(number_min,number_max) num=int(input("輸入你猜測的數(shù)字:")) #猜測次數(shù)統(tǒng)計 totle=1 #條件判斷及循環(huán) while(num!=freedom): if (num > freedom): num = int(input("你猜大了\n請繼續(xù)輸入:")) totle+=1 elif(num< freedom): num = int(input("你猜小了\n請繼續(xù)輸入:")) totle+=1 if(num!=freedom and totle==3): print("已猜三次,未猜中,YOU LOST!?。?#34;) break if (num == freedom): print("恭喜你猜對了") #p42【九九乘法表輸出三種思路】 print("while循環(huán)思路一////////////////////////////////////////////////////////////////") i=1 while i<=9: j=1 while j<=i: print(f"\t{j}×{i}={j*i}",end='') j+=1 i+=1 print() print("while循環(huán)思路二///////////////////////////////////////////////////////////////////") a=0 while a<9: a+=1 b=0 while b<a: b+=1 print(f"\t×{a}={a*b}",end='') print() print("for循環(huán)//////////////////////////////////////////////////////////////////////////") for x in range(1,10): for y in range(1,x+1): print(f"\t{y}×{x}={y*x}",end='') print() #p44【字符串中字符查詢】 text=input("輸入一段內(nèi)容:") find_text=input("輸入你想查詢的字符:") totle=0 for text_number in text: if text_number==find_text: totle+=1 print(f'該內(nèi)容中有【{totle}】個"{find_text}"') #P50【公司發(fā)放工資】 import random money_totle=int(input("輸入公司余額:")) people=int(input("輸入員工人數(shù):")) #員工編號 num_people=0 #績效隨機生成 for x in range(1,people+1): if money_totle>=1000: num_people += 1 grand = random.randint(1, 10) if grand<5: money_totle=money_totle print(f"{num_people}號員工績效為{grand}分,績效低不發(fā)工資,公司剩余余額{money_totle}") continue else: money_totle-=1000 print(f"{num_people}號員工績效為{grand}分,發(fā)工資1000元,公司剩余余額{money_totle}") else: print("公司余額不足,下個月再發(fā)") break
#p61黑馬【ATM】
money=5000000 def charge(): """ 此函數(shù)用于查詢余額 """ print(f"{name}您好,您當前余額為:{money}") exit(menu()) def deposit(): """ 此函數(shù)用于存款 """ amount=int(input("請輸入存款數(shù)額:")) global money money=money+amount print(f"存款成功,當前余額為:{money}元") exit(menu()) def withdraw(): """ 此函數(shù)用于取款 """ global money amount = int(input("請輸入取款數(shù)額:")) if amount>money: print("當前余額不足,無法完成此操作") exit(menu()) else: money = money - amount print(f"取款成功,當前余額為:{money}元") exit(menu()) def menu(): """ 此函數(shù)為主菜單 """ action=int(input("請輸入您想進行操作對應的數(shù)字\n1.查詢余額\n2.存款\n3.取款\n4.退卡\n")) if action==1: charge() elif action==2: deposit() elif action==3: withdraw() elif action==4: print("退卡成功") exit(0) else: print("erro:輸入錯誤,請重新輸入") exit(menu()) name=input("請輸入您的名字:") menu()
#P53函數(shù)的調(diào)用
def void (): print("歡迎來到黑馬程序員\n請出示你的健康碼") void()
#P55函數(shù)形參及實參
def void(x) : print("歡迎來到黑馬程序員,請出示健康碼,并配合體溫檢測") if x<=37.5: print(f"體溫檢測中......\n你的體溫是{x}度,體溫正常,請進!") else: print(f"體溫檢測中......\n你的體溫是{x}度,體溫異常,需要隔離!") void(38.2)
標簽: