标签: python python-3.x
def myfunc(text, num): while num > 0: print(text) num = num - 1 myfunc('Hello', 4)
答案 0 :(得分:1)
num没有正确缩进。
尝试: