beginner
代码逻辑解释
解释一段简单的Python代码是做什么的。
📝 Konten Prompt
请用中文解释下面这段Python代码的作用:
def greet(name):
return 'Hello, ' + name
print(greet('World'))