Python의 경고
커피 한잔 사주세요😄
경고는 기본적으로 예외를 발생시키지 않고 프로그램을 종료하지 않는 경고 메시지입니다.
아래와 같은 경고 카테고리가 있습니다.
Class | Disposition |
---|---|
Warning | This is the base class of all warning category classes. It is a subclass of Exception. |
UserWarning | The default category for warn(). |
DeprecationWarning | Base category for warnings about deprecated features when those warnings are intended for other Python developers (ignored by default, unless triggered by code in __main__). |
SyntaxWarning | Base category for warnings about dubious syntactic features. |
RuntimeWarning | Base category for warnings about dubious runtime features. |
FutureWarning | Base category for warnings about deprecated features when those warnings are intended for end users of applications that are written in Python. |
PendingDeprecationWarning | Base category for warnings about features that will be deprecated in the future (ignored by default). |
ImportWarning | Base category for warnings triggered during the process of importing a module (ignored by default). |
UnicodeWarning | Base category for warnings related to Unicode. |
UnicodeWarning | Base category for warnings related to Unicode. |
BytesWarning | Base category for warnings related to bytes and bytearray. |
ResourceWarning | Base category for warnings related to resource usage (ignored by default). |
warn()은 아래와 같이 수동으로 경고를 발생시킬 수 있습니다.
*메모:
- 첫 번째 인수는 message(Required-Type:str)입니다.
- 두 번째 인수는 카테고리(선택사항-기본값:없음-유형:경고)입니다. *None일 경우 UserWarning이 설정됩니다.
- 세 번째 인수는 stacklevel(Optional-Default:1-Type:int)입니다. *경고가 어떤 코드를 가리키는지 결정합니다.
- 네 번째 인수는 source(Optional-Default:None-Type:Any)입니다.
- skip_file_prefixes 인수가 있습니다(Optional-Default:None-Type:tuple of str):
*메모:
- Skip_file_prefixes=를 사용해야 합니다.
- 수동으로 없음을 설정하면 오류가 발생합니다.
import warnings warnings.warn(message="This is a warning.") # UserWarning: This is a warning. # warnings.warn(message="This is a warning.") warnings.warn(message="This is a warning.", category=None, stacklevel=1, source=None, skip_file_prefixes=()) # UserWarning: This is a warning. # warnings.warn(message="This is a warning.", warnings.warn(message="This is a warning.", category=Warning) # Warning: This is a warning. # warnings.warn(message="This is a warning.", warnings.warn(message="This is a warning.", category=DeprecationWarning) # DeprecationWarning: This is a warning. # warnings.warn(message="This is a warning.", def test1(): warnings.warn(message="Warning 1", stacklevel=-100) warnings.warn(message="Warning 2", stacklevel=0) warnings.warn(message="Warning 3", stacklevel=1) warnings.warn(message="Warning 4", stacklevel=2) warnings.warn(message="Warning 5", stacklevel=3) warnings.warn(message="Warning 6", stacklevel=4) warnings.warn(message="Warning 7", stacklevel=5) warnings.warn(message="Warning 8", stacklevel=100) def test2(): test1() def test3(): test2() test3() # UserWarning: Warning 1 # warnings.warn(message="Warning 1", # UserWarning: Warning 2 # warnings.warn(message="Warning 2", # UserWarning: Warning 3 # warnings.warn(message="Warning 3", # UserWarning: Warning 4 # test1() # UserWarning: Warning 5 # test2() # UserWarning: Warning 6 # test3() # UserWarning: Warning 7 # exec(code_obj, self.user_global_ns, self.user_ns) # UserWarning: Warning 8
위 내용은 Python의 경고의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

핫 AI 도구

Undresser.AI Undress
사실적인 누드 사진을 만들기 위한 AI 기반 앱

AI Clothes Remover
사진에서 옷을 제거하는 온라인 AI 도구입니다.

Undress AI Tool
무료로 이미지를 벗다

Clothoff.io
AI 옷 제거제

Video Face Swap
완전히 무료인 AI 얼굴 교환 도구를 사용하여 모든 비디오의 얼굴을 쉽게 바꾸세요!

인기 기사

뜨거운 도구

메모장++7.3.1
사용하기 쉬운 무료 코드 편집기

SublimeText3 중국어 버전
중국어 버전, 사용하기 매우 쉽습니다.

스튜디오 13.0.1 보내기
강력한 PHP 통합 개발 환경

드림위버 CS6
시각적 웹 개발 도구

SublimeText3 Mac 버전
신 수준의 코드 편집 소프트웨어(SublimeText3)

Python은 데이터 과학, 웹 개발 및 자동화 작업에 적합한 반면 C는 시스템 프로그래밍, 게임 개발 및 임베디드 시스템에 적합합니다. Python은 단순성과 강력한 생태계로 유명하며 C는 고성능 및 기본 제어 기능으로 유명합니다.

2 시간 이내에 Python의 기본 프로그래밍 개념과 기술을 배울 수 있습니다. 1. 변수 및 데이터 유형을 배우기, 2. 마스터 제어 흐름 (조건부 명세서 및 루프), 3. 기능의 정의 및 사용을 이해하십시오. 4. 간단한 예제 및 코드 스 니펫을 통해 Python 프로그래밍을 신속하게 시작하십시오.

Python은 게임 및 GUI 개발에서 탁월합니다. 1) 게임 개발은 Pygame을 사용하여 드로잉, 오디오 및 기타 기능을 제공하며 2D 게임을 만드는 데 적합합니다. 2) GUI 개발은 Tkinter 또는 PYQT를 선택할 수 있습니다. Tkinter는 간단하고 사용하기 쉽고 PYQT는 풍부한 기능을 가지고 있으며 전문 개발에 적합합니다.

Python은 배우고 사용하기 쉽고 C는 더 강력하지만 복잡합니다. 1. Python Syntax는 간결하며 초보자에게 적합합니다. 동적 타이핑 및 자동 메모리 관리를 사용하면 사용하기 쉽지만 런타임 오류가 발생할 수 있습니다. 2.C는 고성능 응용 프로그램에 적합한 저수준 제어 및 고급 기능을 제공하지만 학습 임계 값이 높고 수동 메모리 및 유형 안전 관리가 필요합니다.

제한된 시간에 Python 학습 효율을 극대화하려면 Python의 DateTime, Time 및 Schedule 모듈을 사용할 수 있습니다. 1. DateTime 모듈은 학습 시간을 기록하고 계획하는 데 사용됩니다. 2. 시간 모듈은 학습과 휴식 시간을 설정하는 데 도움이됩니다. 3. 일정 모듈은 주간 학습 작업을 자동으로 배열합니다.

Python은 개발 효율에서 C보다 낫지 만 C는 실행 성능이 높습니다. 1. Python의 간결한 구문 및 풍부한 라이브러리는 개발 효율성을 향상시킵니다. 2.C의 컴파일 유형 특성 및 하드웨어 제어는 실행 성능을 향상시킵니다. 선택할 때는 프로젝트 요구에 따라 개발 속도 및 실행 효율성을 평가해야합니다.

파이썬은 자동화, 스크립팅 및 작업 관리가 탁월합니다. 1) 자동화 : 파일 백업은 OS 및 Shutil과 같은 표준 라이브러리를 통해 실현됩니다. 2) 스크립트 쓰기 : PSUTIL 라이브러리를 사용하여 시스템 리소스를 모니터링합니다. 3) 작업 관리 : 일정 라이브러리를 사용하여 작업을 예약하십시오. Python의 사용 편의성과 풍부한 라이브러리 지원으로 인해 이러한 영역에서 선호하는 도구가됩니다.

Pythonlistsarepartoftsandardlardlibrary, whileraysarenot.listsarebuilt-in, 다재다능하고, 수집 할 수있는 반면, arraysarreprovidedByTearRaymoduledlesscommonlyusedDuetolimitedFunctionality.
