import math from random import randint # imported functions of the math module are called by full names: e.g., math.sqrt() # imported function randint of the random module is called directly. print(f"math.sqrt(64): {math.sqrt(64)}") print(f"math.pi: {math.pi}") print(f"math.sin(1): {math.sin(1)}") print(f"math.gcd(24,36,126): {math.gcd(24,36,126)}") print(f"math.lcm(24,36,126): {math.lcm(24,36,126)}") print(f"randint(1,10): {randint(1,10)}") print(f"randint(1,10): {randint(1,10)}") print(f"randint(1,10): {randint(1,10)}") print(f"randint(1,10): {randint(1,10)}") print(f"randint(1,10): {randint(1,10)}")