Python Code, please
2.28 Domain Lab 4.1 -- Simple interest Calculator
Simple Interest Calculator Your program should ask the user (in this order) for:
Your program should then calculate and display:
Code:
#input of principal
principal = float(input("Enter principal: "))
#input of Rate
rate = float(input("Enter Annual Rate Interest: "))
#input of Time period
time = float(input("Enter time period(years): "))
# Calculating Simple interest
interest = (principal*rate*time)/100
#Calculating Future Value
future_value = interest+principal
#printing Results
print("Your Simple Interest: ",interest)
print("Your Future Value: ",future_value)
OUTPUT:

Python Code, please 2.28 Domain Lab 4.1 -- Simple interest Calculator Simple Interest Calculator Your program...
(code in Python using import tkinter) Write a GUI program to develop a simple math calculator. The user should be able to enter two numbers, and click one of four buttons to do the +, -, *, or / operations. Then the program will display the result. Note: if the divisor in the / operation is 0, display ‘N/A’ in the result.
Please solve in java Write a program that serves as a simple calculator. The program should ask the user for a number, an operator, and then a second number. The operator should be either '+', '-', 'x', or '/'. The program should then report the answer to the problem. Use a switch statement, not an if statement. You'll need to read the operator as a String and compare it using Strings, as you did in 4.1. Turn in your source...
(PYTHON) Write a program that displays the following menu:. , Write Algorithm for Code Geometry Calculator 1. Calculate the Area of a Circle 2. Calculate the Area of a Rectangle 3. Calculate the Area of a Triangle 4. Quit Enter your choice (1 - 4): If the user enters 1, the program should ask for the radius of the circle and then display its area. If the user enters 2, the program should ask for the length and width of...
IN PYTHON USING IDLE PLATFORM PLEASE ALSO POST CODE TO COPY PLEASE Write a PYTHON Program that will ask the user for a base number then the program should display the multiplication table of that number up to 12.
Write a program in Python that computes the interest accrued on an account. You can modify the “futval.py” program given in Chapter 2 to accomplish it. Your program should use a counted loop rather than a formula. It should prompt the user to enter the principal amount, the yearly interest rate as a decimal number, the number of compounding periods in a year, and the duration. It should display the principal value at the end of the duration. To compute...
Write a simple command-line calculator with an exception handler that deals with nonnumeric operands. Your program should display a message that informs the user of the wrong operand type before exiting. It should also ask the user to re-input the number to finish the calculation. PLEASE WRITE IN JAVA.
For this lab, modify the python code below so it will continuously be asking user for inputs to calculate the interest earned until the user enters number 0 (zero) in principle. Once the user enters any number less or equal to 0 in principle, the program will end. here is my code: # Programming Exercise 3-14 # Local variables p = 0.0 r = 0.0 n = 0.0 t = 0.0 loop = True while loop: p = float(input('\nEnter the...
INSTRUCTION AND PROBLEMS Write a Python program for each of the problems in this lab. Please use PyCharm to type and test your programs. Submit the Python files to Blackboard for credit. In this lab, you should submit 4 Python files, one for each problem PROBLEM I Energy consumption is measured in units of kilowatt hours (kWh). The more kWh a household use in a month, the higher the energy bll. A power company charges customers $0.12 per kWh for...
Programming language: PYTHON Prompt: You will be creating a program to show final investment amounts from a principal using simple or compound interest. First, get a principal amount from the user. Next, ask the user if simple or compound interest should be used. If the user types in anything other than these options, ask again until a correct option is chosen. Ask the user to type in the interest rate as a percentage from 0 to 100%. Finally, ask the...
USE IDLE PLATFORM FOR PYTHON PLEASE Write a Python program that creates a list that contains players of your favorite teams. The program then should ask the user to enter the name of a player. If the player is in your list, display a message indicating that the player is in the team. Otherwise, the program should display a message stating that the player isn't on the team.