标签:coding erro 个数 ase 技术分享 while print type eval
python简单方法判断三个数能否组成三角形
#encoding=utf-8
import math
while True:
str=raw_input("please input three numbers a,b,c:(‘stop‘ to exit)")
print "####",str,type(str)
if str !="stop":
x,y,z = eval(str)
min_value=min(x,y,z)
max_value=max(x,y,z)
if min_value<=0:
print "error"
elif (x+y+z)>2*max_value:
print u"能组成三角形"
else:
print u"不能组成三角形"
else:
break
结果:
标签:coding erro 个数 ase 技术分享 while print type eval
原文地址:https://www.cnblogs.com/xiaxiaoxu/p/9739550.html