Description 1 CS9 - Shout with break Write a program to continually read input from the user. When the program receives
Posted: Sat May 14, 2022 3:43 pm
while True loop*
Description 1 CS9 - Shout with break Write a program to continually read input from the user. When the program receives a string from the user, the program should print the same string all in uppercase, then await more input. The program should stop when the user enters "stop". Use a while True loop and a break statement. Example: Enter a string: hello HELLO Enter a string: what WHAT Enter a string: stop /home/loop Termine
Description 1 CS9 - Shout with break Write a program to continually read input from the user. When the program receives a string from the user, the program should print the same string all in uppercase, then await more input. The program should stop when the user enters "stop". Use a while True loop and a break statement. Example: Enter a string: hello HELLO Enter a string: what WHAT Enter a string: stop /home/loop Termine