Python行未运行

2024-05-19 08:59:56 发布

您现在位置:Python中文网/ 问答频道 /正文

while True:
  inp = raw_input()
  if inp == "":pres= input("What would you like to know about me? AGE, JOKE, FACT")
if pres in {'AGE'}:
  print("I was birthed from my mother 87 years ago.")
if pres in {'JOKE'}:
   print("Where do polar bears keep their money?")
   import time
   time.sleep(2)
   print("In a snow bank!")
if pres in {"FACT"}:
  print("Hippopotamus's have pink spit!")

我是一个学生,我的学校项目必须做一个代码,出于某种原因,我不知道如何让聊天机器人回答问题时,有人把年龄,笑话或事实。相反,当我按回车键时,它只是重复这个问题。你知道吗


Tags: intrueinputagerawiftimewhat

热门问题