In python, and assuming I’m on a system which has a random seed generator, how do I get random.seed() to use system time instead? (As if /dev/urandom did not exist)
Advertisement
Answer
JavaScript
x
4
1
import random
2
from datetime import datetime
3
random.seed(datetime.now().timestamp())
4