Skill set for this LAB:
Problem 1 : Write a Python program that prompts the user to enter his/her first and last name. The program first prints the user's full name on one line (use operator + to combine strings).
Problem 2 : Write a program that reads one three-digit positive integer number and finds the sum of the digits of the input number. Example: input: 234, output 9
Problem 3 :
Write a Python program that
converts
Celsius
temperature to the correspondent Fahrenheit
temperature.
The equation for converting a Celsius temperature to
Fahrenheit is
Problem 4 :
Write a Python program that converts Fahrenheit temperature to
Celsius temperature according to the following formula:
Problem 5:
Write a Python program that
prompts the user to enter
four-digit positive integer number. The
program finds the average of the first and last digits. Print the output with 2 digits after decimal
point.
For example, if the input number is 1234, the output is 2.50