给定以下函数:defnPrint(message,n):()whilen0:()print(message)()n-=1调用nPrint('a',4)的输出结果是什么?
A.aaaaa
B.aaaa
C.aaa
D.无效调用
E.无限循环
正确答案:aaaa
猜你喜欢