45fan.com - 路饭网

搜索: 您的位置主页 > 网络频道 > 阅读资讯:判断Python类型的方法

判断Python类型的方法

2016-08-31 17:04:08 来源:www.45fan.com 【

判断Python类型的方法

判断类型可以用两种方法

1:
import types
type(x) is types.IntType # 判断是否int 类型
type(x) is types.StringType #是否string类型
... ...

2:
type(x) == type(1) # 是否 int 类型
type(x) in (type(u'') , type('')): # 是否string, unicode类型
... ...

 

本文地址:http://www.45fan.com/a/question/70353.html
Tags: python 判断 类型
编辑:路饭网
  • 上一篇:XSL知识
  • 下一篇:使用TESTLINK的步骤
  • 关于我们 | 联系我们 | 友情链接 | 网站地图 | Sitemap | App | 返回顶部