파이썬 디버그 기능
Python에서 이 기능을 모방하는 것이 가능합니다. Raphael's blog에서 원래 구현을 찾을 수 있습니다. 내가 사용하는 것은 대략 다음과 같습니다.
import inspect
import sys
import typing
_ExpType = typing.TypeVar('_ExpType')
def dbg(exp: _ExpType) -> _ExpType:
for frame in inspect.stack():
line = frame.code_context[0]
if 'dbg' in line:
start = line.find('(') + 1
end = end if (end := line.rfind(')')) >= 0 else len(line)
print(f'[{frame.filename}:{frame.lineno}] {line[start:end]} = {exp!r}',
file=sys.stderr)
break
return exp
*.py
파일이든 노트북이든 관계없이 훌륭하게 작동합니다. 예시 출력:>>> a, b = 1, 2
... dbg(a + b)
[(...):2] a + b = 3
3
Reference
이 문제에 관하여(파이썬 디버그 기능), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/qoqosz/python-debug-function-4ddd텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)