私信  •  关注

chrischris96

chrischris96 最近创建的主题
chrischris96 最近回复了
5 年前
回复了 chrischris96 创建的主题 » 如何让python只在你说“嗨”的时候回复
def hiOrHey(hello):
    print("hello")

    if hello == 'hi':
        print("Hey there!")
    else:
        print("SAY HI")

hiOrHey(hello)

文件名