I've ended up with this code but I don't want to create a seed number on my own and want to by created by python:
import random
test_seed = int(input("Create a seed number"))
random.seed(test_seed)
random_side = random.randint(0, 1)
if random_side == 1:
print("Heads")
else:
print("Tails")
See if you can help me!