运行下列代码
try:
a = float(input("请输入PI的值:"))
except:
print("输入有误")
else:
print(a)
输入: 好的
则输出的结果是( )。
好的
输入有误
请输入PI的值:
没有输出结果