'F' → Fullscreen
Create a new Python program named 1-4-arithmetic.
side1 and side2.side1 = 8side2 = 5
print("Sum:", side1 + side2)print("Difference:", side1 - side2)print("Product:", side1 * side2)print("Quotient:", side1 / side2)#//) and modulus (%) of your two variables, each with a label.side1 = 8side2 = 5
print("Sum:", side1 + side2)print("Difference:", side1 - side2)print("Product:", side1 * side2)print("Quotient:", side1 / side2)print("Floor Division:", side1 // side2)print("Modulus:", side1 % side2)#**), with a label.side1 = 8side2 = 5
print("Sum:", side1 + side2)print("Difference:", side1 - side2)print("Product:", side1 * side2)print("Quotient:", side1 / side2)print("Floor Division:", side1 // side2)print("Modulus:", side1 % side2)print("Exponent:", side1 ** side2)#Verify your program works correctly.
Sum: 13Difference: 3Product: 40Quotient: 1.6Floor Division: 1Modulus: 3Exponent: 32768Answer the following questions before submitting your work.
/ and // in Python?Submit the required files to the appropriate dropbox.