a) prompting a user to enter a base number 'x' . (1 pts ) b) prompting a user to set range for powers by entering two numbers in variables num1 and num2, such that both numbers ( num1 and num2) are within the range of 1 - 20. your program must check that num2 should never be equal to num1 and it should always be greater than num1. range for power in your for loop becomes (num1, num2). (4 pts) c) using the base number and power range, your program prints results for x ^ y, with each value of y in the powers range. (5 pts ) d) attach and submit either screenshot or .ipynb file containing code and output for this question.