Python3如何判断三角形的类型

时间:2021-05-23

# 判断三角形类型

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.26a=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如何判断三角形的类型就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章