Some basic operations in Python
1. 2*4 is the product of 2 and 4 in python
but 2**4 means 2 raise to the power 4 outcomes become 16
2. CTRL-D is used for quit the IDLE window and CTRL-C is used for quit current execution.
3. for loading any library like sqrt and exp function from math library 'from math import sqrt , exp'.
for importing complete math library function 'from math import *'
Once we have loaded a function from a module, it is available for the rest of that session #Humour#Use