如果给定了一个名称且该名称不为空(“计算结果为False”),则将填充该名称
def say_hello(name=None): return f"Hello, {name}!" if name else "Hello there!"