# To use the module, we need to import it first. # Task: Run the code and see the output.
# import random on line 8 module used to generate random numbers. # random.randint(1,50) on line 9 generates a random integer between 1 and 50 (inclusive). # Task 1 ...