Skill set for this LAB:
Problem 2 :
Write a Python program
that prints 3 lines of text: Your First name, Your Last name, and Your major,
using \n
Problem 3 :
Write a Python program
that prints 3 lines of text: Your First name, Your Last name, and
Your major, using triple quotes (""")
Problem 4 :
Write a Python program that prints the following text:
I use Social Media: "Facebook" and "Twitter" using single quotes as start and end
Problem 5 :
Write a Python program that prints the following text:
I use Social Media: "Facebook" and "Twitter" using triple quotes as start and end
Problem 6: :
Write a Python program that prints the following text: I don't know
"Python"
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 and
three-digit positive integer number. The program first prints the user's
full name on one line (use operator + to combine strings). The
program separates the input number into it's individual digits and
prints the digits on separate lines.
For example if the input number was 236 the program will print
2
3
6