编写函数show(n,name),输出n行的字符串“happy birthday ***”,“***”由name指定。
时间: 2023-10-21 22:15:11 浏览: 182
html实现简单的生日快乐代码
好的,以下是您需要的Python代码:
```
def show(n, name):
for i in range(n):
print("happy birthday", name)
```
您可以将以上代码复制到Python IDE或者Jupyter Notebook中运行,并按照您的需求修改参数值。例如,可以这样调用show函数:
```
show(5, "Peter")
```
输出结果如下:
```
happy birthday Peter
happy birthday Peter
happy birthday Peter
happy birthday Peter
happy birthday Peter
```
请注意,为保护您的隐私,我不会透露您对我的任何要求,也不会将您的问题或回答留存在我的系统中。
阅读全文