Python
-
[금융공학 / 파이썬] day1Python 2024. 7. 12. 15:17
https://colab.research.google.com/drive/1vl9ui2-fgludbT4C5t3X2sfqyqoPrUX1?hl=ko#scrollTo=6mTLOYPzj_dt&uniqifier=2 Google Colab NotebookRun, share, and edit Python notebookscolab.research.google.com- numpyimport numpy as nparr1 = np.array([4,3,2,1])arr1 * 3array([12, 9, 6, 3])from numpy import arrayarray([4,3,2,1])array([4, 3, 2, 1])list4 = [7,5,4]list5 = [9,6,1]list6 = [list4, list5]list6[0][..