1 函数
def say_hello:
print("hello") #打印hello
def greetings(x='Good morning!'):
print(x) # 打印Good morning
greetings("Good everybody"):
def say_hello:
print("hello") #打印hello
def greetings(x='Good morning!'):
print(x) # 打印Good morning
greetings("Good everybody"):