关于#python#的问题,请各位专家解答!

img

def showMsg(n, name):
    for _ in range(n):
        print(f'Happy Birthday {name}')

showMsg(2, "小明")