【python】判断三角形形状

def judge(a,b,c):
    if a<=0 or b<=0 or c<=0 or a+b<c or a+c<b or b+c<a:
        print("不构成三角形")
    elif a==b & b==c & c==a:
        print("等边三角形")
    elif a==b or b==c or c==a :
        print("等腰三角形")
    else :
        print("普通三角形")
a,b,c = map(int, input().split())
judge(a, b, c)
        

你可能感兴趣的:(python)