Python isinstance函数 - Python零基础入门教程
程序员文章站
2022-06-19 12:58:40
目录 一. Python isinstance 函数简介 isinstance 函数语法 二.Python isinstance 函数实战 三.猜你喜欢 零基础 Python 学习路线推荐 : Python 学习目录 >> Python 基础入门 一. Python isinstance 函数简介 ......
目录
零基础 python 学习路线推荐 : python 学习目录 >> python 基础入门
一. python isinstance 函数简介
isinstance 函数是 python中的一个内置函数,主要用于检测变量类型,返回值是 ,在 python 内置函数中,与该函数相似的还有另外一个内置函数 ;
isinstance 函数语法
''' 函数描述:主要用于检测变量类型,返回值是 bool 值 参数: object : 实例对象。 classinfo : 可以是直接或者间接类名、基本类型或者由它们组成的元组。 返回值:如果对象的类型与classinfo类型相同则返回 true,否则返回 false。 ''' isinstance(object,classinfo)
二.python isinstance 函数实战
# !usr/bin/env python # !usr/bin/env python # -*- coding:utf-8 _*- """ @author:猿说编程 @blog(个人博客地址): www.codersrc.com @file:python isinstance函数.py @time:2021/3/24 00:37 @motto:不积跬步无以至千里,不积小流无以成江海,程序人生的精彩需要坚持不懈地积累! """ # 案例: a = 2 isinstance(a,int) # 结果返回 true isinstance(a,str) # 结果返回 false isinstance(a,(str,int,list)) # 是元组中的一个,结果返回 true
在 python 内置函数中,与 相似的还有另外一个内置函数 ,两者区别在于:
- ** isinstance 函数会认为子类是一种父类类型,考虑继承关系。**
- ** type 函数不会认为子类是一种父类类型,不考虑继承关系。**
type 函数和 区别请具体参考:;
三.猜你喜欢
- python 简介
- python pycharm anacanda 区别
- python2.x 和 python3.x,如何选择?
- python 配置环境
- python hello world 入门
- python 代码注释
- python 中文编码
- anaconda 是什么?anconda 下载安装教程
- pycharm 提示:this license **** has been cancelled
- pycharm 设置开发模板/字体大小/背景颜色
未经允许不得转载: » python isinstance 函数
本文由博客 - 猿说编程 发布!
上一篇: 如何有效的运营教育类网站?