您好,登錄后才能下訂單哦!
這篇文章主要講解了Python3判斷三角形類型的方法,內容清晰明了,對此有興趣的小伙伴可以學習一下,相信大家閱讀完之后會有幫助。
# 判斷三角形類型
def triangle(a,b,c): if a>0 and b>0 and c>0: if a+b>c and b+c>a and a+c>b: if a == b and b == c: return ("這是等邊三角形") elif a == b or b == c or c == a: return("這是等腰三角形") else: return("這是不規則三角形") elif a+b==c or b+c==a or a+c==b: return("這是個直角三角形") else: return('這好像不是個三角形') else: return("請輸入大于0的數字")
補充知識:python:輸入三個數判斷是什么三角形
剛剛學習Python,歡迎大家指點
#Filename:Triangle #Function:Judgment triangle #Author:Judy #Time:2018.9.26 a=int(input("Please input the first side:")) #輸入第一條邊 b=int(input("Please input the second side:")) #輸入第二條邊 c=int(input("Please input the third side:")) #輸入第三條邊 if (a+b>c) and (a+c>b) and (b+c>a): #判斷是否是三角形 if a==b==c: print("This is a equilateral triangle") #等邊三角形 elif (a==b or a==c or b==c): print("This is a isosceles triangle") #等腰三角形 elif (a*a+b*b==c*c) or (a*a+b*b==c*c) or (a*a+b*b==c*c): print("This is a right triangle") #直角三角形 else: print("This is a scalene triangle") #不規則三角形 else : print("This isn't a triangle") #不是三角形
注意點:不能直接使用a=input(),輸入3,用a=input(),a=‘3',類型為string類型,不能進行相乘
使用[a,b,c]元組進行輸入,不能直接轉換成int,因為元組最多只能int兩個參數
看完上述內容,是不是對Python3判斷三角形類型的方法有進一步的了解,如果還想學習更多內容,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。