Question: The question is how i can fix this issue please i want to see with pictures how to fix it I don't see the required
The question is how i can fix this issue please i want to see with pictures how to fix it
I don't see the required input list or the output list. I don't see that you declared any of your variables. Most important, I don't see that you included any Pseudocode. Each submission file needs to include your whole program in Pseudocode, and your whole program in Python. There is a very specific syntax that you are required to use, and it is spelled out in the textbook. The lab instructions asks you to follow "the same style as the pseudocode in the Gaddis text..." I don't see a single line of valid Pseudocode in your submission. There is generally a line of Pseudocode required (in proper syntax) for each line of Python.
example: video on youtube
( https://www.youtube.com/watch?v=EcbD5hLQD8o )
this is the what i have really need to be fixed ....
# python program to convert celsius to farenheit
# accept the celsuis as input # calculate Fahrenheit as (Celsius * 1.8)+32 # display the result
#to print the title
print(' \t\tCelsius to Fahrenheit ')
# prompt the user to input celsius
Celsius = float(input("Enter the Celsius\t:"))
# converting celsius to fahrenheit Fahrenheit = (Celsius * 1.8)+32
# display the fahrenheit print(' Fahreheit\t\t:%0.1f '%Fahrenheit)
output:
Celsius to Fahrenheit Enter the Celsius :37.5 Fahreheit :99.5
b)
# python program to convert liters to Gallons
# accept the liter as input # calculate gallon by multiplying 0.264172 to liter # display the result
#Displays the title print(' \t\tLiters to Gallons ')
# prompt the user to input liter Liter = float(input("Enter the liter\t:"))
# converting liter to gallon Gallon = (Liter * 0.264172)
# display the Gallon print(' Gallon\t\t:%0.3f '%Gallon)
output:
Liters to Gallons Enter the liter :1.5 Gallon :0.396
c)
# python program to convert second to days and days to seconds
# accept the day as input # calculate number of seconds by multiplying das with 86400seconds # display the result # accept the seconds as input # calculate number of days by divide seconds with 86400( 1 day = 86400 seconds) # display the result
#Displays the title print(' \t\tDays to Seconds ')
# prompt the user to input Days Day = int(input("Enter the Days\t:"))
# converting day to second #one day has 86400 Second = (Day * 86400)
# display the second print " Seconds \t\t: ",Second
#Displays the title print(' \t\tSeconds to Days ')
# prompt the user to input Seconds Second = float(input("Enter the Seconds\t:"))
# converting second to days #one day has 86400 Day = float(Second/86400)
# display the second print (" Day\t\t:%0.1f "%Day)
OUTPUT:
Days to Seconds Enter the Days :2 Seconds : 172800 Seconds to Days Enter the Seconds :129600 Day :1.5
d) # python program to calculate the final price after deducting discount and adding the shipping price # accept the input for price and store as float # accept the input for Discount and store as float # accept the input for Shipping price and store as float #Calculate the discount percentage # calculate the final price Price-(Price*DiscountPrice)+ShippingPrice # display the result as finalprice
#Displays the title print(' \t\tPrice Calculator ')
# prompt the user to input price Price = float(input(" Enter the price\t\t:"))
# prompt the user to input discount in % DiscountPrice = float(input(" Enter the Discount in %\t\t:"))
# prompt the user to input Shipping Price ShippingPrice = float(input(" Enter the Shipping price\t:"))
#Calculating the Final Price by deducting discount and adding shippingprice DiscountPrice = DiscountPrice/100 FinalPrice = Price-(Price*DiscountPrice)+ShippingPrice
# display the final price print (" Final Price\t\t:%0.2f "%FinalPrice)
Output:
Price Calculator Enter the price :1000 Enter the Discount in % :10 Enter the Shipping price :20 Final Price :920.00
i did it like that???


This the whole question on chegg website
https://www.chegg.com/homework-help/questions-and-answers/important-writing-simple-calculator-program-gets-input-user-calculation-outputs-results-us-q26556818
1 -author-'1. 3 python program to convert celsius to farenheit 5 # accept the celsius as input 6 # calculate Fahrenheit as Celsius * 1.8)+32 7 # display the result 9 to print the title 10 11 printntytCelsius to Fahrenheit 12 13 14 # prompt the user to input celsius 15 16 17 Celsius float(input("Enter the Celsius\t:")) 18 19 # converting celsius to fahrenheit 20 Fahrenheit(Celsius1.8)+32 21 22 # display the fahrenheit 23 print(nFahrenheittt:0.1f 'sFahrenheit) 24 25 python program to convert liters to Gallons 26 27 # accept the liter as input 28 # calculate gallonby multiplying 0.264172 to uter 29 # display the result 30 31 # Displays the title 32 print(Ankt tLiters to Gallons ' , 34 # prompt the user to input liter 35 Liter=float(input("Enter the liter\t:")) 36 37 converting liter to gallon 38 Gallon (Liter 0.264172) 39 40 # display the Gallon 41 print('AnGallonvtt:0.3f 'Gallon) 43 # python program to convert second to days and days to seconds 45 # accept the day as input 46 # calculate number of seconds by multiplying das with 86400seconds 47 display the result 48 # accept the seconds as input 49 # calculate number of days by divide seconds with 86400( 1 day 86400 seconds) 50 # display the result 51 52 # Displays the title 53 print('AntytDays to Seconds ' 55 56 # prompt the user to input Days Day = int(input ("Enter the Days\t :"))
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
