#Variables A=5 B=2 #Calculation C=A+B D=A*B E=A**B #Other more complex mathematical functions in "math" #Use "numpy" for mathematical operations including matrix #Plot results with "matplotlib" #Print results print('C is equal to') print(C) print('') print(f' D={D} and E={E}') print('') print(f'A+E={A+E}') print('') print(f'A+E={"%.1f" %(A+E+0.05)}')