python 에서 assert,isinstance 의 용법 에 대한 상세 한 설명

1. assert
함수 설명:
Assert statements are a convenient way to insert debugging assertions into a program:
assert 문 구 는 디 버 깅 정지점 을 프로그램 에 삽입 하 는 편리 한 방식 이다.
사용 사례:

assert 3 == 3
assert 1 == True
assert (4 == 4)
print('-----------')
assert (3 == 4)
'''
  AssertionError  ,       
'''
print('-----------')
출력 결과:

D:\Users\lenovo\Anaconda3\python.exe F:/    /     /Code/NumPy.py
-----------
Traceback (most recent call last):
 File "F:/    /     /Code/NumPy.py", line 38, in <module>
  assert (3 == 4)
AssertionError
한 개 만 출력 하 는 것 을 볼 수 있 습 니 다.
2. isinstance
함수 설명:
우리 가 클 라 스 를 정의 할 때,우 리 는 실제로 데이터 형식 을 정의 했다.우리 가 정의 하 는 데이터 형식 과 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)

print(isinstance(a, str))   # True
print(isinstance(b, int))    # True
print(isinstance(c, list))   # True
print(isinstance(d, tuple))   # True
print(isinstance(f, Student))  # True
이 편 은 python 에서 assert,isinstance 의 용법 에 대한 상세 한 설명 은 바로 편집장 이 여러분 에 게 공유 한 모든 내용 입 니 다.여러분 에 게 참고 가 되 고 많은 응원 을 바 랍 니 다.

좋은 웹페이지 즐겨찾기