M5Lab Creating DataFrame (Assignment Details)
Introduction:
In this assignment students are to create a program that allows user to student names and scores, the program is to also allow defining the subject the grades are being entered for. The entered information is to be stored in a DataFrame
Instructions:
For this assignment, you will do the following
1.Create a Python code file named M5Lab_FirstLast.py
(replace "FirstLast" with your own name)
2. Add a title comment block to the top of the new Python file using the following form
# A brief description of the project
# Date
# CSC121 M5Lab – DataFrame
# Your Name
3. As explained in the introduction above, the program is for saving student scores for a specific number of tests.
4. First, the program is to ask user how many tests are the grades for. If 3 entered for instance, the program is to ask user to enter test names. This would be used as indices for the grades that will be entered. (20 points)
5. Next, the program is to ask user the number of students they would like to enter grades for. Then the program is to ask user to enter dictionary information as following: (60 points)
• Student Name
• List of grades (3 grades minimum)
Note: it’s important that the program allows entering name and grades for more than one student.
Make sure that a dataFrame is created to store all of the information collected.
6. Display the DataFrame content and verify that test names were assigned as labels for each row (10 points)
CS 340 Milestone One Guidelines and Rubric Overview: For this assignment, you will implement the fundamental operations of create, read, update,
Retail Transaction Programming Project Project Requirements: Develop a program to emulate a purchase transaction at a retail store. This
7COM1028 Secure Systems Programming Referral Coursework: Secure
Create a GUI program that:Accepts the following from a user:Item NameItem QuantityItem PriceAllows the user to create a file to store the sales receip
CS 340 Final Project Guidelines and Rubric Overview The final project will encompass developing a web service using a software stack and impleme