[Python] 13.외부 클래스 사용하기
- Develop/Python
- 2020. 12. 30.
□ 외부 클래스 사용하기
파이선에도 여러가지 유용한 클래스를 제공합니다. 수학, 스트링, 랜덤수, 시간등등 여러가지 외부에서 임포트해서 유용하게 사용할 수 있는 여러 클래스를 제공합니다. 이 클래스에 대해 사용하는 방법을 알아봅니다.
■ 파이선 외부 클래스 종류
requests : http 요청/응답 모듈
numpy : 수치해석모듈
pandas : 데이터 분석 모듈
math : 수학관련 모듈
■ 외부 클래스 import 방법
사용법은 자바와 비슷하게 import문법으로 사용합니다.
▶︎ 사용방법
import class명.
■ string 클래스
string 클래스중 특수문자를 가지고 있는 punctuation메소드에 대해 알아봅니다.
string 클래스 지원 메소드들 : https://docs.python.org/ko/3/library/string.html
▶︎ 사용방법
import string
string.punctuation
▶︎ 예제 코드
코드 :
import string
def find_words(text):
text = text.replace("\n", " ")
# string.punctuation이 가지고 있는 특수 문자들을 모두 가져옵니다.
for char in string.punctuation:
# 특수문자들은 모두 "특수문자"라는 글로 교체합니다.
# print("특수문자 : ", char)
text = text.replace(char,"특수문자")
words = text.split(" ")
return words
sp_text = "파이선 @ 입문을 $ 위한 % 기초 ^ 강의"
words = find_words(sp_text)
print(words)
결과 : split메소드 때문에 띄워쓰기 항목은 모두 잘려져 있습니다.
['파이선', '특수문자', '입문을', '특수문자', '위한', '특수문자', '기초', '특수문자', '강의']
참고 :
punctuation 안의 특수 문자들 : "!@#$%^&*()[]{}~\/:;|
■ random 클래스
사용방법에 따라 여러 숫자를 발생시킵니다.
▶︎ 사용방법
import random
random.method
▶︎ 예제 코드
코드 :
import random
# 0부터 1사이의 난수를 반환.
r = random.random()
print(r)
# a와 b사이의 정수를 반환.
a = 1
b = 10
r = random.randint(a,b)
print(r)
# L원소중 하나를 선택
L = ["1","2","3","4","5"]
r = random.choice(L)
print(r)
# 원하는 숫자만큼 원소 선택
r = random.sample(["원빈","현석","정해","미석"], 3)
print(r)
# 범위안의 숫자 난수 발생.
r = random.randint(1, 20)
print(r)
결과 :
0.709917184129056
6
1
['현석', '미석', '원빈']
3
■ random 클래스(고정값)
난수를 고정으로 하는 방법입니다. 특정 이유로 고정값을 나오게 할 필요가 있을때 주로 사용됩니다.
▶︎ 사용방법
random.seed
random.randint
▶︎ 예제 코드
코드 :
import random
print ("Random number with seed 30")
random.seed(30)
print ("first Number ", random.randint(25,50))
random.seed(30)
print ("Second Number ", random.randint(25,50))
random.seed(30)
print ("Third Number ", random.randint(25,50))
결과 :
Random number with seed 30
first Number 42
Second Number 42
Third Number 42
■ math 클래스
수학관련 메소드를 모아둔 클래스입니다.
▶︎ 예제 코드
코드 :
import math
# 입력 숫자를 라디안으로 변환
print(math.radians(10))
# 사인값으로 변환.
print(math.sin(10))
# 코사인 값으로 변환.
print(math.cos(10))
결과 :
0.17453292519943295
-0.5440211108893699
-0.8390715290764524
■ time 클래스
시간과 관련된 메소드를 모아둔 클래스입니다.
▶︎ 예제 코드
코드 :
import time
# 클럭의 현재 시간을 나노초(ns) 단위로 가져옴.
print(time.perf_counter())
결과 :
6530.085492916
■ 스크립트 매개변수 대입
파이선 스크립트를 실행할 때 스크립트 이름 뒤에 매개변수를 주어 실행할 수 있습니다. 사용방법에 대해 알아봅니다.
▶︎ 사용방법
파이선 명령어를 입력하고 스크립트명을 입력합니다. 그리고 뒤에 매개변수를 필요한만큼 입력합니다.
python script_name.py arg1 arg2 arg3 ....
script_name.py : 매개변수 0에 해당합니다.
arg1 : 매개변수 1에 해당합니다.
arg2 : 매겨변수 2에 해당합니다.
arg3 : 매겨변수 3에 해당합니다.
....
▶︎ 예제 코드
코드 :
# sys를 import합니다.
import sys
# 매개변수를 받습니다. 입력된 매개변수들에 대해 차례대로 출력합니다.
args = sys.argv[1:]
for i in args:
print(i)
결과 :
python arg_test.py arg1 arg2 arg3
arg1
arg2
arg3
참고 :
args = sys.argv[1:]에서 argv[0:]으로 바꾸면 스크립트 이름부터 출력됩니다.
arg_test.py
arg1
arg2
arg3
■ 파이선 다른 회차
[Python] Intro : Very Quick Python : https://myinfrabox.tistory.com/169
[Python] 01.Python 준비 : https://myinfrabox.tistory.com/170
[Python] 02.Python 스크립트 작성 방법 : https://myinfrabox.tistory.com/171
[Python] 03.변수 선언 및 할당 : https://myinfrabox.tistory.com/172
[Python] 04.문자열 처리 : https://myinfrabox.tistory.com/173
[Python] 05.조건문 : https://myinfrabox.tistory.com/174
[Python] 06.반복문 : https://myinfrabox.tistory.com/175
[Python] 07.튜플(Tuple) : https://myinfrabox.tistory.com/176
[Python] 08.리스트(List) : https://myinfrabox.tistory.com/177
[Python] 09.사전(Dictionary) : https://myinfrabox.tistory.com/178
[Pytho] 10.set : https://myinfrabox.tistory.com/179
[Python] 11.함수(Function) : https://myinfrabox.tistory.com/180
[Python] 12.클래스(Class) : https://myinfrabox.tistory.com/181
[Python] 14.파일처리 : https://myinfrabox.tistory.com/183
[Python] 15.MySQL Database : https://myinfrabox.tistory.com/184
'Develop > Python' 카테고리의 다른 글
[Python] 15.MySQL Database (0) | 2020.12.30 |
---|---|
[Python] 14.파일처리 (0) | 2020.12.30 |
[Python] 12.클래스(Class) (0) | 2020.12.30 |
[Python] 11.함수(Function) (0) | 2020.12.30 |
[Pytho] 10.set (0) | 2020.12.30 |