Skip to content

001 Imports

Introduction

Imports are required for using the functionalities of a module or class inside another.

1
2
3
4
5
import sys 
import keyword 
import operator 
from datetime import datetime 
import os