python判断能否组成三角形_python三角形判定怎么做
python三角形判定怎么做?下面給大家?guī)砭唧w的例子:
相關(guān)推薦:《Python視頻教程》
例子:a = int(input("The length of the side a = "))
b = int(input("The length of the side b = "))
c = int(input("The length of the side c = "))
if a != b and b != c and a != c:
print("This is Scalene") #不規(guī)則三角形
elif a == b and b == c:
print("This is an Equilateral") #等邊三角形
else:
print("This is Isosceles") #等腰三角形
結(jié)果如下:The length of the side a = 3
The length of the side b = 4
The length of the side c = 5
This is Scalene
The length of the side a = 3
The length of the side b = 3
The length of the side c = 3
This is an Equilateral
The length of the side a = 3
The length of the side b = 3
The length of the side c = 4
This is Isosceles
以上就是python三角形判定怎么做的詳細(xì)內(nèi)容,更多請(qǐng)關(guān)注jquery中文網(wǎng)其它相關(guān)文章!
本文原創(chuàng)發(fā)布jQuery中文網(wǎng),轉(zhuǎn)載請(qǐng)注明出處,感謝您的尊重!
總結(jié)
以上是生活随笔為你收集整理的python判断能否组成三角形_python三角形判定怎么做的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 云计算机具体应用场景,云计算的定义、类型
- 下一篇: websocket python爬虫_p