What will happen when this code is executed? while True: line = input('> ') if line[0] == '#': continue if line == 'done': break print(line) print('Done!')
B) It will ignore any input starting with '#', print all other inputs, and stop if the input is 'done'.