I'm creating new variables for classes, can I do something like this?
for i in range(8): s{i} = card(i, "hearth") #card is class
Or is there some alternative? It would be very helpful if I could do it
I want this output
s0 = card(O, "hearth") s1 = card(1, "hearth") #etc..