I realized that if I choose
random.seed("hello world!")
it actually works, i.e. it does not give me any error and it works like a normal seed; So for example choosing
random.seed("hello world!")
random.choices([1,2,3,4,5,6,7], k = 10)
keeps giving me the same output; But it would be actually interesting, to what number a string is converted to??