1、
>>> def a(): ## 创建函数 print("helloworld!") >>> a() helloworld! ## 调用函数 >>>
python中创建函数和调用函数
原文:https://www.cnblogs.com/liujiaxin2018/p/14476279.html