Help with this program???

Chris Angelico rosuav at gmail.com
Fri Nov 27 04:57:55 EST 2015


On Fri, Nov 27, 2015 at 8:43 PM, justin bloomer via Python-list
<python-list at python.org> wrote:
> Your program should contain a function that:
> 1. Seeks input from the user (via the keyboard);
> 2. To build a list of student exam results;
> 3. For each student their name (first and last), student number, and mark
> out of 100 should be captured;
> 4. For full marks regular expressions or similar mechanisms should be used
> to ensure the data appears valid.

I suggest you start by opening up a programmer's editor and saving an
empty file under the name "examresults.py". Then take your keyboard in
hand, and start writing code. The above text would make a good set of
"stub comments" - notes to indicate what parts of code you still need
to write - which you can progressively replace with actual code.

ChrisA



More information about the Python-list mailing list