''' DS2000 Fall 2024 Sample code from class on 11/12/24 create objects out of card class This is a driver -- in main, we create objects and write procedural code. In the other file(s), we define classes that we can make objects out of. ''' # from [filename] import [classname] from card import Card def main(): # Make two cards, different suits/values c1 = Card("diamond", 1) c2 = Card("spade", 12) main()