python modify module import locations code example
Example 1: import different module based on python version
try:
import simplejson as json
except ImportError:
import json
Example 2: import library python
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt