This question has been asked many times, here are a few for reference:
Reimport a module while interactive
Proper way to reload a python module from the console
How to reload a module's function in Python?
From what I searched and learned, I have wrote the following but it fails to properly reload the module:
import pandas as pd
pd.get_option('display.width') # 80
pd.set_option("display.width", 150)
del pd
import importlib
import sys
pd = importlib.reload(sys.modules['pandas'])
pd.get_option('display.width') # 150