Q1: Write a program that generates a random number 1 to 1000 and prints that value. Then it evaluates the square root of that number and prints that value.
import random
import math
---
number = random.randint(1, 1000)
print(number)
---
sqrt = math.sqrt(number)
print(sqrt)