
in Python create a
Must include Python comments for each of the items show below.
Calculate a Percentage. For example, the discount percentage on a sale item.
Use of 3 Constants. To be used for values that will not change throughout the life of the program.
A Turtle Graphic Logo. This logo will be used to depict your fictitious company and should be something interesting and creative.
Three (3) If-else Conditions. The usage of conditions is required and should be used to evaluate or make a decision on some kind of input. These can include the comparison of Strings or depict a nested conditional sequence.
The Usage of at Least 2 Logical Operators
2 While Loops.
1 For Loop
At Least 2 Functions (1 with at least 1 parameter)
1 Instance of a List + Looping Through the List

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

- Java - Name Formatarrow_forwardIn cengage mindtap The credit plan at TidBit Computer Store specifies a 10% down payment and an annual interest rate of 12%. Monthly payments are 5% of the listed purchase price, minus the down payment. Write a program that takes the purchase price as input. The program should display a table, with appropriate headers, of a payment schedule for the lifetime of the loan. Each row of the table should contain the following items: The month number (beginning with 1) The current total balance owed The interest owed for that month The amount of principal owed for that month The payment for that month The balance remaining after payment The amount of interest for a month is equal to balance × rate / 12. The amount of principal for a month is equal to the monthly payment minus the interest owed.arrow_forwardAn argument is expressed in English below. Rhys will go to the beach. If Rhys is excited; then Rhys will go to the beach. Rhys is excited. Variable names are assigned to each English phrase as follows: p: Rhys is excited •q: Rhys will go to the beach Is the argument valid? If valid, then indicate which rule is used for the argument. If invalid, then give truth assignments to the variables that prove the argument is invalid. Pick 4. Check Nextarrow_forward
- Hello, I need to solve this problem with C++ programming language using Visual Studio. Thank you.arrow_forwardIn certain programming languages, comments appear between delimiters such as (# and #). • A comment must begin with (# and end with #). • A comment may not contain #) inside the comment. • A comment's delimiters must be separate: (##) is a comment, (#) is not. For simplicity, assume that the alphabet is E = {a, b, (, ), #}). Give a regular expression that accepts comments.arrow_forwardCreate a Raptor Flow Chart for this problem (hand written or using a software) ; screen capture it or save it as a Picture. and attach it here A certain electrical company charges its customers for electricity as follows. Kilowatt-Hours (kWh) O to 500 501 to 1000 over 1000 Cost per kWh (in pesos) 10 10 + 0.05 for each kwh over 500 35 + 0.03 for each kwh above 1000 Enter the previous meter reading and the present meter reading, calculate the cost and print out how much is charged. Sample Input: Input the previous meter reading (in kWh): 1056 Input the present meter reading (in kWh): 1232 Expected Output: Electric bill (in pesos): 1,760.00 Sample Input: Input the previous meter reading (in kWh): 1056 Input the present meter reading (in kWh): 1560 Expected Output: Electric bill (in pesos): 5,040.20 Sample Input: Input the previous meter reading (in kWh): 1056 Input the present meter reading (in kWh): 2172 Expected Output: Electric bill (in pesos): 39,063.48arrow_forward
- Python please: If the score is between 90 and 100, the grade is A, and the teacher comment is 'Exceptional work' for 100 only 'Excellent work' for anything other than 100 If the score is between 80 and 89, the grade is B, and the teacher comment is 'Very Good, can do better' If the score is between 70 and 79, the grade is C, and the teacher comment is 'Good, but need to work harder' If the score is between 60 and 69, the grade is D, and there are no teacher comments. If the score is below 60, the grade is F, and the teacher comment is 'Fail, need to appear for a retest' For example if the input (student test score) is 100 the output is The Student grade is A and the teacher comment is 'Exceptional work'arrow_forwardThe text presented the Sierpinski triangle fractal. Inthis exercise, you will write a program to display another fractal, called the Kochsnowflake, named after a famous Swedish mathematician. A Koch snowflake iscreated as follows:1. Begin with an equilateral triangle, which is considered to be the Koch fractalof order (or level) 0, as shown in Figure a.2. Divide each line in the shape into three equal line segments and draw an outwardequilateral triangle with the middle line segment as the base to create aKoch fractal of order 1, as shown in Figure b.3. Repeat Step 2 to create a Koch fractal of order 2, 3, . . . , and so on, as shownin Figures c and d.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





