For example, I want to use the numpy
isnan
function. I already downloaded the pandas library:
import pandas as pd pd.np.isnan(1)
It works, but does it have flaws? Or should I write
import pandas as pd import numpy as np np.isnan(1)
What is good practice?
source share