def a(n): #定义函数a(n)
if n>0:
return "正数"
elif n==0:
return "零"
return "负数"
#主程序
i=float( ("请输入一个数:"))
print()
微信扫码预览、分享更方便