摘要: 解释:函数与过程 函数(Function):有返回值 过程(procedure):是简单、特殊并没有返回值的 1.函数 Python是只有函数没有过程的 >>> def hell(): print('Hi好') #hell()函数没有返回值 >>> temp = hell() #hell()赋值给t 阅读全文