def say_hello():
"""
打招呼
:return:
"""
i = 1
while i <= 3:
print("say hello %d" % i)
i += 1
say_hello()
微信扫一扫
def say_hello():
"""
打招呼
:return:
"""
i = 1
while i <= 3:
print("say hello %d" % i)
i += 1
say_hello()
相关推荐