• 2022-06-19
    Are the following two distributions equivalent?import random
    def dist5():
    return int(random.random() * 10)
    def dist6():
    return random.randint(0, 10)
    A: Yes
    B: No
  • 举一反三