I have a string which has some chars and I need to generate a random uppercase char which is not found in my string.
Example: str = "SABXT" The random char can be any char which is not in str
I tried:
string.letters = "SABXT"
random.choice(string.letters)
but this do the opposite, it generates the char from my str