Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 923 Bytes

File metadata and controls

21 lines (15 loc) · 923 Bytes

Binder

python_handson

This repository stores all practice programs that I do in Python

vskills - This contains all exercises that are required for clearing certified python developer offered by vskills exercises - This contains all exercises that I am planning do on a daily basis

General instructions

  • import the module; help()
  • import the module; dir() to get the list of methods supported
  • import the module; help(.)
  • to install a module $pip install matplotlib
  • to upgrade a module $pip install --upgrade matplotlib //you might have to use absolute path
  • to install from eggs python -m easy_install "C:\Pillow-4.0.0-py3.6-win-amd64.egg"
  • installs
  • For debugging: python -m pdb or import pdb and use pdb.set_trace()