Python Learning
- 
Array In Python ['https://docs.python.org/3/library/array.html'] 
- 
Guide of Pyhons' Magic Mthod [https://rszalski.github.io/magicmethods/] 
- 
Python 3 Path Lib [https://docs.python.org/3/library/pathlib.html] 
- 
Python 3 DateTime [https://docs.python.org/3/library/datetime.html#strftime-strptime-behavior] 
- 
Python Package Manager [https://pypi.org/] 
- To crate a virtual environment [ python -m venv env]
- To Install pipenv [ pip install pipenv]
- To check where the pipenv is located [pipenv --venv]
- To activate the pipenv viratul env [ pipenv shell] to exit from env type exit
- Install package from pip file [pipenv insall]
- Install packages from pipfile.lock [pipenv install --ignore-pipfile]
- setup tool for create a own package [pip install setuptools wheel twine]