定义一个函数,def high_inful(i): if i>=842: print(1) else:print(0)显示正常,但是输出时为None:问题所在:仅仅打印数据而没有保存返回数据,所以应该把print改为 return。