-
Notifications
You must be signed in to change notification settings - Fork 76
Practice Python
wdawson edited this page Sep 3, 2012
·
2 revisions
Once you have a basic understanding of Python, you should be able to make a pretty simple program. Don't worry, everyone on the team will be able to help you along the way.
Write a program that asks the user to input information about one or more students and print it out. You will need a Student
class, with at least name
and year
fields. Once the user has provided the necessary information, you can make a Student
object and add it to a list that you will print out when the user is done.
For an answer, click here