Individual Activity: ID Badge Generator
Special Instructions for this Week's Activity
Each week will contain a team activity. These activities are designed to take about one hour and should be completed by multiple people working together.
You need gather for a synchronous video call, where everyone can see the code that is being written and help contribute.
For this lesson, because the teams may not be fully defined you will work on the activity individually, but you are encouraged to collaborate with others by asking and answering questions in the course discussion.
Even though you will not meet with a team this week, to help you see how the process will work, this activity is set up identically to the future team activities, including the Canvas quiz that you will submit upon completion. For this lesson, you should simply answer "True" to any questions that ask if you met with your team or were on time to the meeting, etc. In future lessons, you should answer those questions honestly, according to what you actually did.
Overview
An ID badge, such as a drivers license or student ID, contains personal details that are formatted in a very specific way.
For this activity you will write a program that will create a properly formatted ID badge.
Assignment
Write a program to prompt the user for the following:
First name
Last name
Email Address
Phone Number
Job Title
ID Number
Then you should display the information back in this format:
Note that the square brackets []
indicate a value coming from the user and should not be displayed.
----------------------------------------
[LAST NAME], [first name]
[Job title]
ID: [id number]
[email address]
[phone number]
----------------------------------------
In addition to the spacing and punctuation shown above, you must implement the following requirements:
The last name should be converted from whatever the user types to be displayed in ALL CAPS.
The job title should be displayed so that the first letter is capitalized.
The email address should be displayed in all lowercase.
An example of the program running is shown:
Please enter the following information:
First name: Jane
Last name: Doe
Email address: JaneDoe@email.com
Phone number: (208) 555-1234
Job title: chief software architect
ID Number: 83-23821
The ID Card is:
----------------------------------------
DOE, Jane
Chief Software Architect
ID: 83-23821
janedoe@email.com
(208) 555-1234
----------------------------------------
Core Requirements
Each team activity will contain three core requirements. These are items that you are expected to be able to complete during the one hour team meeting if you have come prepared.
You should work through the assignment in this order:
Prompt for all of the necessary values and store them in variables. Then display each item to the screen, without worrying about any spacing, punctuation, or formatting yet.
Arrange the display so that the spacing and punctuation exactly match the example shown.
Use the built-in string functions to make the last name display in all caps, the job title display in "title case," and the email display in all lowercase.
Stretch Challenge
Most team activities will also contain stretch challenges, which are not specifically required by the assignment, but are a great way to dive deeper into the material. They can be more difficult and may require you to find solutions that weren't directly covered in the preparation material.
The stretch challenges for this activity are:
Add hair color and eye color and put them both on the same line in the display.
Add a field for the name of the month they started and also a yes/no field for whether they have completed advanced training. Put these both on the same line in the display.
For the two lines that you just added, make it so that the second columns align, regardless of how many letters are in the responses.
To complete this one, you may need to search the internet for something like, "python spacing format" or something similar to see if you get any ideas.
At the end of the stretch challenge, your output should look something like the following:
The ID Card is:
----------------------------------------
DOE, Jane
Chief Software Architect
ID: 83-23821
janedoe@email.com
(208) 555-1234
Hair: Brown Eyes: Blue
Month: September Training: Yes
----------------------------------------
Sample Solution
When your program is finished, please view the sample solution for this program to compare it to your approach.
You should work to complete this activity for the one hour period first, without looking at the sample solution. However, if you have worked on it for at least an hour and are still having problems, you may feel free to use the sample solution to help you finish your program.
Sample solution (Core Requirements)
Sample solution (Stretch Challenges)
Submission
When you are finished:
- Return to Canvas to take the quiz.
Up Next
- Project: Clever Stories
Other Links:
- Return to: Week Overview | Course Home