Python Programming Section 1 When both conditions are true, the program should print "You qualify to go on pension", otherwise, it should print a message that specifies which condition(s) was/were not met. Note that people over the age of 65 should already be on pension. Section 2 Write a Python script that prompts the user to enter a base and an exponent. The program should use if statements to check whether the exponent is negative. The program should use or, and, or not operators to check if BOTH the base and exponent are not zero (since 0 to the power of 0 is not defined). The program should then use the pow() function from the math module to perform exponentiation of the base to the exponent. Section 3 Write a Python script that prompts the user to enter two numbers and an operator (+, -, *, /) to perform a mathematical opera􀆟on on those numbers. The program should check for a division by zero error and print an error message if the user attempts to divide by zero. The program should also use if-elif-else statements to perform the specified opera􀆟on and print the result. PLEASE ALSO RECOMMEND WEBSITES/APPS WHERE I CAN FIND EXAMPLE QUESTIONS LIKE THIS, FOR PRACTICE