在Sympy中,該函數
Triangle.is_scalene()
用於檢查給定的三角形是否為Scalene Triangle。斜角三角形是所有邊長均不同的三角形。用法: Triangle.is_scalene() 返回: True: if it is scalene, otherwise False
範例1:
# import Triangle, Point
from sympy.geometry import Triangle, Point
# using Triangle()
t1 = Triangle(Point(0, 0), Point(3, 0), Point(1, 2))
# using is_scalene()
isScalene = t1.is_scalene()
print(isScalene)
輸出:
True
範例2:
# import Triangle, Point
from sympy.geometry import Triangle, Point
# using Triangle()
t2 = Triangle(Point(0, 0), Point(4, 0), Point(2, 4))
# using is_scalene()
isScalene = t2.is_scalene()
print(isScalene)
輸出:
False
相關用法
- Python sympy.sec()用法及代碼示例
- Python sympy.lcm()用法及代碼示例
- Python sympy.det()用法及代碼示例
- Python sympy.nT()用法及代碼示例
- Python sympy.eye()用法及代碼示例
- Python sympy.ff()用法及代碼示例
- Python sympy.gcd()用法及代碼示例
- Python sympy.S()用法及代碼示例
- Python sympy.cot()用法及代碼示例
- Python sympy.ones()用法及代碼示例
- Python sympy.rf()用法及代碼示例
- Python sympy.crt()用法及代碼示例
- Python sympy.cos()用法及代碼示例
- Python sympy.tan()用法及代碼示例
- Python sympy.sin()用法及代碼示例
- Python sympy.div()用法及代碼示例
- Python sympy.has()用法及代碼示例
- Python sympy.Pow()用法及代碼示例
- Python sympy.lcm()用法及代碼示例
- Python sympy.Add()用法及代碼示例
注:本文由純淨天空篩選整理自ravikishor大神的英文原創作品 Python – Sympy Triangle.is_scalene() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。