python中只有函数没有过程。 函数有return的话就返回值,没有return的话就返回None。 说明:hello()没有return,所以temp没有值。不会显示不代表没有返回值。即使hello()没有return,也会返回一个None对象。所以 python中函数都有返回值。 python函数返回值会动态的自动确定类型。 python没有变量,只有名字。换言而知,...
如果需要,使用return;如果不需要,那么就不必使用return。