Things I learn from the personal work.1. Modules1.1 random.random()Randomly generates a real number (a number with a decimal point) greater than or equal to 0 and less than or equal to 1.1.2 random.randint(a, b)Returns a random integer between a and b.1.3 random.uniform(a, b)Returns a random real number between a and b.1.4 random.choice(seq)Randomly selects a value from the given **sequence(seq)..