赞
踩
def say_hello(): """ 打招呼 :return: """ i = 1 while i <= 3: print("say hello %d" % i) i += 1 say_hello()