You don't need such a thing in Python. Unlike MATLAB which uses the same fixed random seed by default, Python automatically sets a new random seed each time, either by system-provided randomness or by the system clock depending on the platform. You only need to manually set the seed if you want to use the same seed each time. This is covered in the documentation:
random.seed(a=None, version=2)
If a is omitted or None, the current system time is used. If randomness sources are provided by the operating system, they are used instead of the system time (see the os.urandom() function for details on availability).
If you want to manually reset the seed to a new random value (which you only need to do if you previously set it to a fixed value), you can just do:
>>> import random
>>>
>>> random.seed()
Or for numpy:
>>> import numpy as np
>>>
>>> np.random.seed()