#conditional statment V2 #Author:Tyler Agnew #Date:6/11/25 #purpose:To respond to a question with different outcomes depending on the answer. print('I have a question for you') retry='t' while retry=="t": print('type yes if you agree, and no if you do not agree') aliens_real=input('Are aliens real?') aliens=aliens_real.lower() if aliens=="yes": why=str(input('Why do you belive that aliens are real')) print('thats a very interesting reason to belive that they are real') break elif aliens=='no': why=str(input('why do you belive that they do not exist?')) print('thats a very interesting reason to belive that they are not real') break else: print('error') retry=input('Your awnser was not valid, please type t to reanswer').lower() print('This program has ended')