Welcome to Westonci.ca, the place where your questions are answered by a community of knowledgeable contributors. Our platform provides a seamless experience for finding reliable answers from a knowledgeable network of professionals. Discover detailed answers to your questions from a wide network of experts on our comprehensive Q&A platform.

Python Loops:
1. Prompt the user to enter a number. Then count from 1 to the number they entered, printing each number on a separate line.
2. Have the user enter strings until they enter ā€œStop, pleaseā€. Then print out all of the strings they entered. (Hint use a while loop and the break function)
3. Store any number 1-100 in a variable. Then have the user try to guess the number until they get it right. If they are wrong, tell them whether their guess needs to be lower (if they guess a number greater than your number) or higher (if they guess a number lower than your number).