ACTIVITY 27: Master the Python Dictionaries Data Structures
1. Initial Dictionary
student_grades_dict = {
'Student1': 'A+',
'Student2': 'B+',
'Student3': 'B',
'Student4': 'A-',
'Student5': 'C'
}
A dictionary named student_grades_dict is created to store 5 students as keys and their grade...
dotosmedaniel.hashnode.dev5 min read