use all import packages inb one file python code example
Example 1: import different module based on python version
try:
import simplejson as json
except ImportError:
import json
Example 2: how to import python
import random
from os import name, system
import time as t