반응형 파이선3 [Python] matplotlib.pyplot 을 이용해서 line chart 만들기 LINE CHART import matplotlib.pyplot as plt plt.figure(figsize=(10, 5)) lang_list = ['2018', '2019', '2020', '2021', '2022'] plt.plot(lang_list, [10, 12, 15, 16, 20], marker='o') plt.plot(lang_list, [14, 16, 15, 18, 17], marker='o') plt.plot(lang_list, [20, 18, 15, 14, 12], marker='o') plt.legend(['Python', 'Java', 'Obj-C']) plt.grid(True) plt.show() plt.grid(False) 이면 Title, x, y Label plt.xlabe.. 2022. 2. 20. [Python] 특수문자 제거, HTML 태그 제거 특수문자 제거 import re test = 'hello! bryan~@@ 안녕~' pattern = '[^\w\s]' print(re.sub(pattern=pattern, repl='', string=test)) 결과는 hello bryan 안녕 HTML 태그 제거 import re test = 'hello! bryan~@@ 안녕~' pattern = ']*>' print(re.sub(pattern=pattern, repl='', string=test)) 결과는 hello! bryan~@@ 안녕~ 2020. 6. 25. [Python] python 설치 on Mac Python install on mac os 파이썬 설치 https://www.python.org/ Welcome to Python.org The official home of the Python Programming Language www.python.org 다운로드 메뉴에 마우스를 올리면 다운로드 버튼이 보입니다. 클릭~ 페키지 파일이 다운로드 됩니다. 저거 클릭~ 설치가 끝났습니다. 참~쉽죠. 테스트로 터미널을 실행해서 파이썬을 해봅니다. 바로 python 을 입력하고 Enter. >>> 가 나옵니다. 여기에 python 명령어를 입력하면 실행이됩니다. 밖으로 나오려면 >>> exit() 2019. 8. 13. 이전 1 다음 728x90 반응형