Learn Python 011- while loop
本站寻求有缘人接手,详细了解请联系站长QQ1493399855
from random import choicequestions = ['Why is the sky blue? ','Why do cats have 4 legs? ','Why is the summer hot? ']question = choice(questions)answer = input(question).lower().strip()while answer != 'just because':answer = input('Why? ').lower().strip()print('Oh... Okay, I understand now.')