>백엔드 개발 >파이썬 튜토리얼 >파이썬에서 삼각형 결정을 수행하는 방법

파이썬에서 삼각형 결정을 수행하는 방법

爱喝马黛茶的安东尼
爱喝马黛茶的安东尼원래의
2019-06-25 10:47:4110649검색

파이썬에서 삼각형 결정을 수행하는 방법

파이썬에서 삼각형 결정을 수행하는 방법은 무엇입니까? 다음은 구체적인 예입니다.

관련 권장 사항: "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") #不规则三角形
elif a == b and b == c:
    print("This is an Equilateral") #等边三角形
else:
    print("This is Isosceles") #等腰三角形

결과는 다음과 같습니다:

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

위 내용은 파이썬에서 삼각형 결정을 수행하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.