I’m not sure if I caught the use of random.seed() function as in the video.
Can you just tell me about it in simple words briefly?
aAsking about seed function
Hey @aniketdogra09, let me explain you that :
Seed function is used to save the state of a random function, so that it can generate same random numbers on multiple executions of the code on the same machine or on different machines (for a specific seed value). The seed value is the previous value number generated by the generator. For the first time when there is no previous value, it uses current system time.
Hope this helps !
Happy Learning 