What would a very simple while loop statement be that would continue the below program until the user types "exit"? For example, while response = (!'exit') continue file else break print ('Thank you, good bye!') #I know this is completely wrong, but it's a try! My file so far: #!/usr/bin/python friends = {'John' : {'phone' : '0401', 'birthday' : '31 July', 'address' : 'UK', 'interests' : ['a', 'b', 'c']}, 'Harry' : {'phone' : '0402', 'birthday' : '2 August', 'address' : 'Hungary', 'interests' : ['d', 'e', 'f']}} response = raw_input("Please enter search criteria, or type 'exit' to exit the