Posts

Showing posts with the label module

Python Module & Package

Image
  Concept They are simply directories, but with a twist. Each  package  in  Python  is a directory which MUST contain a special file called __init__.py . This file can be empty, and it indicates that the directory it contains is a  Python package , so it can be imported the same way a  module  can be imported. Find Example Visit below Link : Example Quiz Level 1 Quiz Level 2 Request Me