matplotlib.pyplot - subplot, 여러 개의 그래프 그리기
* 여러 개의 그래프 그리기 - subplot 이용 import numpy as np import matplotlib.pyplot as plt def f(t): return np.exp(-t) * np.cos(2*np.pi*t) def g(t): return np.sin(np.pi*t) t1 = np.arange(0.0, 5.0, 0.01) t2 = np.arange(0.0, 5.0, 0.01) plt.subplot(221) plt.plot(t1, f(t1)) plt.subplot(222) plt.plot(t2, g(t2)) plt.subplot(223) plt.plot(t1, f(t1), 'r-') plt.subplot(224) plt.plot(t2, g(t2), 'r-') plt.show() - pl..
Python - for문에서의 range, enumerate
* Python에서의 for in 반복문 Python에서는 for in문 한가지 방식의 for문만 제공한다. for item in iterable ...iteratable code... - iterable 객체에는 list, dictionary, set, string, tuple, bytes 등이 있다. - range도 iterable하다. * range range(시작숫자, 종료숫자, step) - 시작숫자부터 종료숫자 바로 앞 숫자까지 컬렉션을 만든다. - 시작숫자와 step은 생략 가능하다. for i in range(5) print(i) 더보기 결과 0 1 2 3 4 - 파이썬에서 권장하지 않는 패턴 s = [1, 3, 5] for i in range(len(s)): print(s[i]) - 파이..