Python 1: Introduction to Python
Homework 1

Due

Sunday

Deliverables

There is one deliverable for this assignment

Specification

Write a code which will ask the user for the following

The program should then print each of the above values preceded by a label.

Each value and label must be on the same line.

Be sure to chose good variable names.

The prompts should tell the user what value is expected.

Make sure there is a space after the last letter in the prompt (see below).

Testing

Your output should look something like this
$ python3 hw2.py
Name: T. Omar Soro
Email: tsoro@cs.umb.edu
username: tsoro
Major: Computer Science
Name:    T. Omar Soro
Email:   tsoro@cs.umb.edu
Username: tsoro
Major:   Computer Science

The text in blue is my response to each request for a value

The output does not have to line up neatly as I have done here.

Be sure to run this script on the Unix machine so you know it works in the environment in which I will run it when I score your homework.