正文

当然可以。以下是一个简单的Python函数定义及其调用示例: ```python def greet(name): return f"Hello, {name}!" # 调用函数 print(greet("Alice")) ```