Posts

Showing posts from August, 2020

Python Notes (Numpy , Pandas , Matplotlib )

Image
Read  : https://www.w3schools.com/python/default.asp --------------------------------------------------------------------------------------------------------------- IMPORTANT NOTES Intendation is very important in python. A Bunch of Functions together make a Module , A bunch of Modules together make a Library. Python Do Not have Variable++ or ++ or -- For increment. Use += or -= The  pprint  module provides a capability to “pretty-print” arbitrary Python data structures in a well-formatted and more readable way!. E g - pprint.pprint(object) A number that isn’t 0 is always  True, even when it’s negative.  Python’s  self  is basically the same idea as'  this ' “None” is Python’s null value We can create a Distribution File and install our module using pip , we can share this module to others directly or upload it on PyPi site , so anyone can install it using pip. ----------------------------------------------------------------------------------...