Question: PYTHON Help! I need help wrtiting this program. (Simplest way) Temperature Converter with Function Program. Write a program that prompts the user for a Fahrenheit

PYTHON Help! I need help wrtiting this program. (Simplest way)
Temperature Converter with Function Program. Write a program that prompts the user for a Fahrenheit temperature in the main part of the program, then pass this value to a user-defined function which will convert it Celsius and professionally display the Celsius conversion.
Celsius = (5/9) * (Fahrenheit - 32)
In other words, the input will occur in main and the process and output will occur in the function. Your program should run like this (round Celsius to two digits to right of decimal and display both temperature).
Enter Fahrenheit temperature to convert: 100
100.0 Fahrenheit is equal to 37.78 Celsius.
2. Write a Python program to display the current day of the week as shown and how many days are in the current month. Your output should look like this (as an example yours shown have live information, i.e. using current day of week and month):
Today is: Friday
Number of days in current month: 31
Your program may need to be the following (to import two libraries):
import datetime import calendar

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!