import math
A = input("请输入三角形边长A:")
B = input("请输入三角形边长B:")
C = input("请输入三角形边长C:")
# 以下是判断输入值是否为字符,不是字符再继续执行,是字符则结束程序不再执行
if A.isdigit() and B.isdigit() and C.isdigit():
# 'str.isdigit()'判断某个字符串是数字还是非数字'
A = float(A)
B = float(B)
C = float(C)
el
# 判断三角形类型
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: