75 - While Loops 2

Run Settings
LanguagePython
Language Version
Run Command
# I can use both the for and while loop: my_list = [1,2,3] for item in my_list: print(item) i = 0 while i < len(my_list): print(my_list[i]) i += 1 while True: input('say something: ') break # It only asks once, but what if I remove break? while True: input('say something: ') # It keeps asking me while True: response = input('say something: ') if (response == 'bye'): break
Editor Settings
Theme
Key bindings
Full width
Lines