Description

Hello,

Please write python code as per given instructions given below in separate documents and answer the following questions along with code

(2.1) Assignment: Hello World

Submit ONE document with your coding snippets for each of these problems.
Please number your answer to match the question number.

1. Write a program that displays hello world to the screen in python using the linux operating system. The goal of this assignment is to ensure you have your python development environment setup and working. Submit a screen shot as well as the self assessment.

2. Write a program that stores the number of years old you are in a variable and also creates variables for the number of months, days, hours, minutes, and seconds old you are.

3. Write a program that asks the user for an amount of money owed and an amount of money given to the clerk, and prints to the screen the appropriate amount of change to give optimized in dollars, quarters, dimes, nickels, pennies. For example, if you owe $3.27 and you give $10, the change will be ($6.73 – 6 dollars, 2 quarters, 2 dimes, 0 nickels, 3 pennies)

4. Write a program that stores in a dictionary your first name, last name, and age and displays to the screen a sentence containing the person’s full name and age. You should accomplish this using traditional string concatenation as well as f strings.

===============================================================

(2.2) Assignment: Age

Submit a document with your coding solution for this.

Write a program that stores the number of years old you are in a variable and also creates variables for the number of months, days, hours, minutes, and seconds old you are.

=-=====================================================================================

(2.3) Assignment: Money

Submit a document with your coding solution for this.

Write a program that asks the user for an amount of money owed and an amount of money given to the clerk, and prints to the screen the appropriate amount of change to give optimized in dollars, quarters, dimes, nickels, pennies.
For example, if you owe $3.27 and you give $10, the change will be ($6.73 – 6 dollars, 2 quarters, 2 dimes, 0 nickels, 3 pennies)


========================================================================

(2.4) Assignment: Name and Age

Submit a document with your coding solution for this.

Write a program that stores in a dictionary your first name, last name, and age and displays to the screen a sentence containing the person’s full name and age.
You should accomplish this using traditional string concatenation as well as f strings.