码迷,mamicode.com
首页 > 编程语言 > 详细

<Python>判断变量是否是DataFrame 或者 Series

时间:2018-12-18 02:31:38      阅读:362      评论:0      收藏:0      [点我收藏+]

标签:python   taf   flow   UNC   int   port   ack   back   over   

https://stackoverflow.com/questions/14808945/check-if-variable-is-dataframe

 

Use the built-in isinstance() function.

1 import pandas as pd
2 
3 def f(var):
4     if isinstance(var, pd.DataFrame):
5         print "do stuff"

 

 

<Python>判断变量是否是DataFrame 或者 Series

标签:python   taf   flow   UNC   int   port   ack   back   over   

原文地址:https://www.cnblogs.com/focus-z/p/10134539.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!