python中创建函数和调用函数

1、

>>> def a():     ## 创建函数
    print("helloworld!")

    
>>> a()
helloworld!      ## 调用函数
>>> 
原文地址:https://www.cnblogs.com/liujiaxin2018/p/14476279.html