码迷,mamicode.com
首页 > 编程语言 > 详细

Python3:判断三角形的类型

时间:2018-12-07 20:59:22      阅读:263      评论:0      收藏:0      [点我收藏+]

标签:bsp   python   nbsp   大于   image   png   分享图片   size   pytho   

# 判断三角形类型
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的数字")

技术分享图片技术分享图片

 

 



Python3:判断三角形的类型

标签:bsp   python   nbsp   大于   image   png   分享图片   size   pytho   

原文地址:https://www.cnblogs.com/test123/p/10084179.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!