""" Felix Muzny DS 2000 Lecture 18 November 12, 2024 Introduction to classes - Card class (in card.py) - diver/main code (in this file itself) """ # so we can access the Card class without saying card.Card from card import Card def main(): # make and test out some cards c1 = Card(1, 1) print(c1) c2 = Card(2, 10) print(c2) c3 = Card(3, 13) print(c3) c4 = Card(4, 11) print(c4) main()