Skill set for this LAB:
Problem 2 :
Write a Python program that
converts
Celsius
temperature to the correspondent Fahrenheit
temperature.
The equation for converting a Celsius temperature to
Fahrenheit is
Problem 3 :
Write a Python program that converts Fahrenheit temperature to
Celsius temperature according to the following formula:
Problem 4:
Write a Python program that
prompts the user to enter his/her first and last name
The program prints the user's
full name on one line (use operator + to combine strings).
Problem 5:
Write a Python program that reas a
three-digit positive integer.
The program separates the input number into it's individual digits and
finds the product of its digits. In addition, the program prints the
digits in reverse order on separate lines.
For example, if the input number was 236 the program will print
The product is: 36
6
3
2