Integrating the functions and tools
The purpose of this application project is to apply what you’ve learned about Python programming to a new context. Please read all the instructions carefully. (You can use the videos and resources from Weeks 9-11 to help you complete this application project.)
Requirements:
Create a totally new Python program that uses and integrates the input function, the while loop function, and the if statement all together. You can have your project do anything you want. Be creative and have fun with it. However, it must be of your own creation, and it must integreate these three items together. This means that you must use the input function to utilize input to alter the flow or functioning of your while loop and/or your if statement. You must also use an if statement and a while loop together (an if statement inside a while loop or a while loop inside an if statement). You can also nest multiple while loops together or nest multiple if statements together.
We need at least 10 more requests to produce the answer.
0 / 10 have requested this problem solution
The more requests, the faster the answer.
Integrating the functions and tools The purpose of this application project is to apply what you’ve...
It's time to put everything you've learned together and do something fun with Python! Be creative, do your best, and have fun! Your project will be automatically included in the pool of students' work. If selected, your project will be used as a demonstration to current and prospective students in the future. Please let me know if you prefer NOT to include your project to be in the pool of demonstrating projects. Project Description Create a real-world scenario of a...
CECS Project 1 RPS (Rock-Paper-Scissors) Game Use python This project asks you to practice . creating a new python file using pycharm . doing text- based input and output building your own algorithm using branching and loop Your program should operate as follows It must let the user choose from among three options of rock, paper, and scissors It shall play an honest game of RPS Display the choice the user made . If the user input is not one...
Python Lesson Assignment Implement the following 4 functions: fancy_min(a, b) Input: two formal parameters: a and b Output: return the minimum of a and b Notes: a and b can either be a number or None if a is None, return b if b is None, return a if both are None, return None otherwise return the minimum of a and b do not use the built in function min() fancy_max(a, b) Input: two formal parameters: a and b Output:...
Python 3 coding with AWS/Ide. Objective: The purpose of this lab is for you to become familiar with Python’s built-in text container -- class str-- and lists containing multiple strings. One of the advantages of the str class is that, to the programmer, strings in your code may be treated in a manner that is similar to how numbers are treated. Just like ints, floats, a string object (i.e., variable) may be initialized with a literal value or the contents...
We will be creating an application to interacts with a webservice in order to obtain data. Your program will use all of the information you’ve learned in the class in order to create a useful application. Your program must prompt the user for their city or zip code and request weather forecast data from OpenWeatherMap: http://openweathermap.org/ Your program must display the weather information in a READABLE format to the user. Requirements: Create a header for your program just as you...
Python: As you drive across one of the Washington DC monuments, there appeared to be a billboard with bold words informing the citizens of DC that the Powerball jackpot has risen to one of the all-time high. As you rest in your deep thoughts thinking that you have chance to win this jackpot. As an IT professional living and working in the District of Columbia area living with five other fellow roommates, who are in the same situation. As the...
Please help: For this project, you will create a shape drawing program using Turtle graphics. Your program will begin by asking the user how many points they would like to enter (# of vertices for the shape). Next, you will use a loop to input each X and Y coordinate and store these coordinates in lists. After inputting all of the coordinates, create a second loop that will draw and fill the shape using the coordinates that were entered. All...
program language: python 3
Purpose: Solve a problem by writing multiple functions that perform different subtasks, and combining their use to solve a larger problem. Also to practice documenting functions. Degree of Difficulty: Moderate Your task is to compute the cost of renovating the flooring in a rectangular room. This includes replacing the carpet and and the baseboards. Your task is to write a Python program that calculates and the cost of the renovation. To accomplish this, you will need...
Lab 5 Instructions For Lab 5, you will be writing a more complex modular program that uses at least two arrays, and has at least one loop that accesses the data in the arrays. As long as your program satisfies the requirements listed below, you are free to design and write any type of program that you care to. You are encouraged to be creative, and pick something that has meaning for you, because you'll have more fun. Feel free...
C++ Pr ogramming (CSC-115) Functions (pass by Reference) Programming project Using FUNCTIONS, write a C++ program that calculates the Area of a cirele, a square and a rectangle. Your program must prompt the user to select which area is to be calculated. Document your program. Apply the do while loop to repeat the program Apply the while loop for input validation. Apply the switch statements or the if/ else if statement to prompt the user for the area's selection. Based...