私信  •  关注

Onaapo

Onaapo 最近创建的主题
Onaapo 最近回复了
5 年前
回复了 Onaapo 创建的主题 » 在python中使用def

试试这个:

def greet_user():
    print("""Display a simple greeting.""")
    print("Hello!")

greet_user()

输出:

你好!