I'm new to Python. How can I generate this code with a different or unequal character?
I want output like this
41PVY02KF#
83#YCF6X15
import random import string FullChar = CEFLMPRTVWXYK0123456789# count = 10 count = int(count) UniqueCode = 0 for i in range(count): UniqueCode += random.choice(FullChar) print(UniqueCode)