"""Question 1: Build a program to manage a university's course catalog. You want to define a base class Course that has the following properties: course_code: a string representing the course code ...
import random class Card: def init(self, suit, rank): self.suit = suit self.rank = rank def str(self): return f"{self.rank['rank']} of {self.suit}" class Deck: def ...