[Python]python中assert和isinstance的用法

  • 2020 年 2 月 24 日
  • 笔记

assert语句是一种插入调试断点到程序的一种便捷的方式。

assert 3 == 3  assert 1 == True  assert (4 == 4)  print('-----------')  assert (3 == 4)  '''  抛出AssertionError异常,后面程序不执行  '''  print('-----------')

isinstance函数说明: 当我们定义一个class的时候,我们实际上就定义了一种数据类型。我们定义的数据类型和Python自带的数据类型,比如str、list、dict没什么两样: 判断一个变量是否是某个类型可以用isinstance()判断:

class Student():      def __init__(self, name, score):          self.name = name          self.score = score    a = '10'  b = 3  c = [1, 2, 3]  d = (1, 2, 3)  f = Student('Eden', 99.9)