I'm trying to change the entry of the set to an integer
I've tried isolating the entry and using the "int" function on it
contestant = input("Choose a door from the three doors:")
doors = {1,2,3}
prize = random.randint(1,3)
revealable_doors = doors - {int(contestant), int(prize)}
host = int(revealable_doors)
I expect that host will be an integer but I keep getting this error
host = int(revealable_doors)
TypeError: int() argument must be a string, a bytes-like object or a number, not 'set'