刚刚学习Python,欢迎大家指点
#Filename:Triangle
#Function:Judgment triangle
#Author:Judy
#Time:2018.9.26
a=int(input("Please input the first side:")) #输入第一条边
b=int(input("Please input the second side:")) #输入第二条边
c=int(input("Please input the third side:")) #输入第三条边
if (a+b>c) and (a+c>b) and (b+c>a): #判断是否是三角形
if a==b==c:
print("This is a equilateral triangle") #等边三角形
elif (a==b or a==c or b==c):
print("This is a isosceles triangle") #等腰三角形
elif (a*a+b*b==c*c) or (a*a+b*b==c*c) or (a*a+b*b==c*c):
print("This is a right triangle") #直角三角形
else:
print("This is a scalene triangle") #不规则三角形
else :
print("This isn't a triangle") #不是三角形
注意点:不能直接使用a=input(),输入3,用a=input(),a=‘3’,类型为string类型,不能进行相乘
使用[a,b,c]元组进行输入,不能直接转换成int,因为元组最多只能int两个参数