모듈:
특수 변수:
변수 앞뒤에 "__"-이중 밑줄(파이썬에서는 dunder이라고 함)로 표시됩니다.
예:1
입력:
print("Hello") print(__name__) print(__file__)
출력:
Hello __main__ /home/guru/Desktop/Guru/Bank.py
위의 예에서는
---> name은 동일한 모듈에서 작업 중인지 다른 모듈에서 작업 중인지 확인하는 데 사용됩니다. 동일한 모듈에서 작업 중이면 main이 출력이 됩니다. 이는 동일한 작업 모듈에서 작업 중임을 의미합니다. 인쇄.임포트를 통해 다른 모듈에서 인쇄하는 경우 출력은 해당 모듈 이름이 됩니다.
--->file은 모듈을 찾는 데 사용됩니다.
예:2
모듈이 재사용 가능하다는 것을 증명하려면:
사례:1 두 Python 모듈이 모두 같은 폴더에 있습니다
입력:
calculator.py-module1
def add(no1,no2): print(no1+no2) def subtract(no1,no2): print(no1-no2) def multiply(no1,no2): print(no1*no2) def divide(no1,no2): print(no1/no2)
user.py-module2
import calculator calculator.add(10,3) calculator.multiply(10,3)
그래서 우리는 Calculator.py에서 user.py로 가져오고 모듈 2에서 함수를 호출했습니다.
출력은
13 30
사례:2 다른 폴더에 있는 Python 모듈
두 모듈이 서로 다른 폴더에 있으면 출력에 modulenotfounderror가 표시됩니다.
출력:
ModuleNotFoundError: No module named 'calculator'
calculator.py에서 특정 기능만 필요한 경우 전체 모듈을 가져올 필요가 없으며 대신 "from"을 사용하여 특정 기능을 사용할 수 있습니다.
from calculator import add, divide add(10,3) divide(10,2)
doc-->문서 문자열
이 변수는 설명과 같이 특정 모듈에 대해 아는 데 사용됩니다.
모든 모듈에는 ''' ''' 또는 """ """에 언급되는 문서가 있습니다.
'''It is about special variables''' print(__doc__)
출력:
It is about special variables
도움말-함수, 파일 위치, 문서 문자열 등 특정 모듈에 대한 모든 세부 정보를 보려면
#In user.py module: import calculator print(help(calculator))
참고:vi(모듈 이름.py) - 텍스트 편집기를 여는 대신 터미널 자체에서 파일을 여는 데 사용됩니다. 그리고 저장한 후 텍스트 편집기에서 다시 로드하면 변경 사항이 반영됩니다.
모듈 유형:
사용자 정의-.py 확장자로 생성하는 모든 모듈은 사용자 정의 모듈입니다.
사전 정의된 모듈 - Python에 내장된 모듈입니다.
help('modules') 이를 사용하면 Python에서 사전 정의된 모든 모듈을 볼 수 있습니다.
Otp 생성기: 임의 모듈 사용:
import random otp = random.randint(100000,999999) print(otp)
출력:
263861 696781 802686
작업 1:
Bank.py:모듈 1
print("Hello") print(__name__) print(__file__)
customer.py:모듈 2
Hello __main__ /home/guru/Desktop/Guru/Bank.py
출력은
def add(no1,no2): print(no1+no2) def subtract(no1,no2): print(no1-no2) def multiply(no1,no2): print(no1*no2) def divide(no1,no2): print(no1/no2)
작업:2
몇 가지 중요한 사전 정의 모듈:
1) Os 모듈: 운영 체제와 상호 작용하는 데 사용됩니다.
import calculator calculator.add(10,3) calculator.multiply(10,3)
출력:
13 30
2) 수학: 수학적 연산을 수행합니다.
예:제곱근 계산
ModuleNotFoundError: No module named 'calculator'
출력:
from calculator import add, divide add(10,3) divide(10,2)
3) datetime : 날짜와 시간을 관리합니다.
'''It is about special variables''' print(__doc__)
출력:
It is about special variables
4) sys - 시스템별 매개변수 및 기능: 시스템별 매개변수에 대한 액세스를 제공합니다.
#In user.py module: import calculator print(help(calculator))
출력: Python 버전 표시
import random otp = random.randint(100000,999999) print(otp)
5) re - 정규식: 문자열의 패턴 일치를 허용합니다.
문자열이 반복되어 그 문자열만 찾아야 하는 경우 re 모듈을 사용할 수 있습니다.
263861 696781 802686
출력:
def deposit(amount): print("Total deposit amount is ",amount) return(amount) def withdraw(amount): print("Total withdrawal amount is ",amount) return(amount)
6) 컬렉션 - 특수 데이터 구조: 고성능 컨테이너 데이터 유형을 제공합니다.
import Bank total_deposit=Bank.deposit(100000) total_withdrawal=Bank.withdraw(20000) print("Bank balance is ",(total_deposit-total_withdrawal))
출력: 위의 입력 출력에서 각 데이터의 발생을 계산하고 표시합니다.
Total deposit amount is 100000 Total withdrawal amount is 20000 Bank balance is 80000
7) Django: 웹 애플리케이션을 만드는 데 사용됩니다.
8) 문자열: 문자열 작업을 더 쉽게 해주는 상수 및 함수 모음을 제공합니다.
예:#상수 중 하나 사용-string.ascii_lowercase
print("Contents:", os.listdir())
출력:
Contents: ['user.py', 'Bank.py', '__pycache__', 'calculator.py', 'customer.py', 'hello.py', 'python classes']
위 내용은 Python Day - odules-의미 및 유형, 작업의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!