Program 1:introduction.py For your first program in Python,you will need to replicate the output of the hello.py file that you executed during last week's lab.You will need to make two main changes to the welcome message:
1.First,ask the user for their name and display include their name in the display message 2.Alter the message to include the day and times of both the lecture days and your lab session
Example Output
Your output should be formatted like the image below
Please enter your name:[Name]
Hello [Name]! Welcome to the CSC/DSCI 1301 Principles of Computer/Data Science Course! Our class is held every Tuesday and Thursday at 11:e0am. Our lab session is held every [Day] at [Time].
Skills Covered
Displaying output on the Terminal/Console o Formatting the output
Taking input from the user via the Terminal/Console
Using block and inline comments