This is my code:
df = pd.DataFrame({'First':[1,2,3,4],'Second':[1,2,3,'string'],'Third':[1,2,3,4],'Fourth':['string','lava','cake','Volcano']})
columns = df.applymap(np.isreal).all()
print(type(columns))
print(columns)
True_columns = []
False_columns = []
The output is:
<class 'pandas.core.series.Series'>
First True
Second False
Third True
Fourth False
dtype: bool
I need to save all the columns with TRUE (First, Third) in True_columns list and all the FALSE (Second, Fourth) in False_columns list. I am learning pandas. Could anyone help me on how to achieve this requirement?
Thanks in advance.