Python(12)
-
Python - pandas(numpy기반의 복잡한 데이터분석을 위한 패키지)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 12..
2020.09.02 -
Python - matplotlib (데이터를 시각화 해주는 패키지)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 # test23.py # 데이터 시각화 # matplotlib 패키지 설치 # https://matplotlib.org/ # 선그래프, 산점도, 히스토그램, 파이그래프, 막대그래프 import matplotlib.pyplot as plt import numpy as np # 선그래프 : 순서가 있는 숫자(변하는 숫자) 데이터를 시각화 data1=[10,14,19,20,25] # plt.plot(data1) # plt.show() x=np.arange(-4.5,5,0.5) print(x) y=2*x**2 # plt.plot(x..
2020.09.02 -
Python - numpy(계산을 빠르게 하기 위한 패키지)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 # test21.py # numpy 패키지 설치 # 파이썬에서 과학연산(배열)쉽고 빠르게 하는 패키지 # 다차원 배열을 효과적으로 관리 # www.numpy.org import numpy as np # 리스트 생성 data1=[0,1,2,3,4,5] # numpy 배열 a1=np.array(data1) print(a1) print(a1.dt..
2020.09.02 -
Python - 모듈
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 # test9.py # 모듈 : 파이썬 파일(변수, 함수, 클래스 들을 모아놓은 파일) def sum(a, b): return a + b # cmd # d: # cd d:Dropbox/workspace_py5/py1/ # dir # python # print(sum(10,20)) TypeError : 'int' object is not iterable # import..
2020.09.02 -
Python - 파일 입출력, print(),input()
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 # test8.py # 파일 읽고 쓰기 # 화면 출력 입력 print() input() # a = input("숫자 입력하세요 : ") # print("입력한 수 : ", a) # 파일 읽고 쓰기 # 파일 객체생성 # 변수 = open("파일이름","모드") # 모드 write 파일내용을 쓸 때, a(append)내용을 추가 , readline 파일 읽을 ..
2020.09.02 -
Python - Exception
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 # test7.py # 예외처리 : 논리적오류, 물리적 오류 발생 처리 print("프로그램 시작") a=4 b=0 if b!=0: print(a/b) # ZeroDivisionError: division by zero else: print("0으로 나뉨") print("프로그램 끝") print("프로그램 시작") try: print(a/b) except ZeroDivisionError as e: print(e) finally: print("예외상관없이 마무리") ..
2020.09.02