
Concept explainers
In Python: Given the name of a text file that is read from user input and contains student scores, complete a

Trending nowThis is a popular solution!
Step by stepSolved in 3 steps with 1 images

- 5.PYTHON Programming language Turtle Graphics: Hypnotic Pattern Use a loop with the turtle graphics library to draw the design shown. Use named constants and inputs from the user. Perform input validation of the user inputs. • Set the screen to 600 x 600 pixels (constant) • Draw the square in a 400 x 400 pixel area (constant) Put a red dot counter at the the start and top right corner every three squares (constant) • Ask user to input a number of squares 5 to 15 and validate • Ask user to input a pen color "black", "blue", "green", and validate • Bonus:arrow_forwardHere are the two programs which you may choose from to do this program: 1. Using Files - Student Line Up Modify the Student Line Up program described in Programming Challenge 14 which states: "A teacher has asked all of her students to line up according to their first name. For example, in one class Amy will at the front of the line, and Yolanda will be at the end. Write a program that prompts the user to enter the number of students in the class, then loops to read that many names. Once all of the names have been read, it reports which student would be at the front of the line and which one would be at the end of the line. You may assume that no two students have the same name. You are now to do this program reading names from a file. Names should be read in until there is no more data to be read. I am providing for you a file named LineUp.txt for you to use in writing this program. I suggest that you write it first without the file and then modify to add the file.arrow_forwardIn Python or Flowgarithm please. Preferable Python.arrow_forward
- Create the following program using Python,you may use Replit for a free version of Python. Use loops to input a list of employee names and salaries and store them in parallel arrays. End the input with a sentinel value. The salaries should be floating point numbers and Salaries should be input in even hundreds. For example, a salary of 36,510 should be input as 36.5 and a salary of 69,030 should be entered as 69.0. Find the average of all the salaries of the employees. Find the highest and the lowest of all salaries. Display the following using proper labels: 1.Display the names and salaries of all the employees. 2. Display the average of all the salaries (for example, " The average of all salaries is $30000" ) 3. Display the highest of all the salaries 4. Display the lowest of all the salaries Please inculde header comments. If possible include step comments. Name of the submission - Employee Salaries Author of the submission - John Smith Summary/goal of the submission…arrow_forwardQuadraticAA.java Write a program that solves quadratic equations of the form , where The values A, B, and C will be real numbers (doubles) that you will request from the user. The equation below is what is used to solve for . Remember, there will be two solutions for x (not necessarily distinct). No loops are necessary, so don’t include any. To find the two solutions for this equation, you will use the quadratic formula: Remember that it must be solved for both the and : You will ask the user to input a value for A, B, and C (in that order, using those same letters), then you will use those values to find the two values of x as above. Your output MUST then display the original quadratic equation back to the user with their coefficients in place, and then output the two results. We will assume that the user will not put zero for A. *Format ALL OUTPUT VALUES (including the equation) to have only two decimal places. There is a test case below. Your program should run the…arrow_forwardSTARTING OUT WITH PYTHON FOURTH EDITION TONY GRADDIS CHAPTER 8, QUESTION 14 GAS PRICE SOLVE a question from "Starting out with Python" by Tony Gaddis Chapter 8, question number 14, the title "Gas Prices" In the student sample program files for this chapter, you will find a text file named GasPrices.txt. The file contains the weekly average prices for a gallon of gas in the United States, beginning on April 5th, 1993, and ending on August 26th, 2013. Figure 8-7 shows an example of the first few lines of the file's contents:(ATTACHED) Each line in the file contains the average price for a gallon of gas on a specific date. Each line is formatted in the following way: MM-DD-YYYY: price MM is the two-digit month, DD is the two-digit day, and YYYY is the four-digit year. Price is the average price per gallon of gas on the specified date. For this assignment, you are to write one or more programs that read the contents of the file and perform the following calculations: Average Price Per…arrow_forward
- I do not know what I am doing wrong. The code is supposed to look like the first image attacted. The prompt is: 1. Write a program that generates a square table that contains randomly generated integer values that are between 0 and10. - include a fixed seed value by using the function random.seed 2. put the random numbers in a box and show the sum vertically and horizontally It is on python 3.9arrow_forwardIn python pleasearrow_forwardUsing Python to write a program that displays a square using the function DisplaySquare(n, ch). The function receives n as a parameter for the length of the square, and ch as a character used in the display For example, DisplaySquare(5,’#’) will display the following pattern on screen: ##### ##### ##### ##### #####arrow_forward
- Create an interpolation search algorithm in python that takes two files of numbers. One file has sorted numbers ascending or descending and the other file consists of the numbers you will search the first file for, there will be numbers that are not found within the file so please account for this. Please comment your code so i can better understand.arrow_forwardVirus DNA files As a future doctor, Jojo works in a laboratory that analyzes viral DNA. Due to the pandemic During the virus outbreak, Jojo received many requests to analyze whether there was any viral DNA in the patient. This number of requests made Jojo's job even more difficult. Therefore, Jojo ask Lili who is a programmer for help to make a program that can read the file containing the patient's DNA data and viral DNA and then match them. If on the patient's DNA found the exact same string pattern, then write to the index screen the found DNA. Data contained in the file testdata.in Input Format The first line of input is the number of test cases TThe second row and so on as many as T rows are the S1 string of patient DNA and the S2 string of viral DNA separated by spaces Output Format The array index found the same string pattern. Constraints 1 ≤ T ≤ 1003 ≤ |S2| ≤ |S1| ≤ 100|S| is the length of the string.S will only consist of lowercase letters [a-z] Sample Input (testdata.in)…arrow_forwardPython Upvote for VERY QUICK answer. No need to comment the code. Thank you.arrow_forward
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education





