20221206 빅데이터&AI(머신러닝,딥러닝)인공지능
첨부파일 ai(딥러닝) 과제 보고서.py 파일 다운로드 # 기본문법 my_list = [10, 'hello list', 20] print(my_list[1]) my_list_2 = [[10, 20, 30], [40, 50, 60]] print(my_list_2[1][1]) import numpy as np my_arr = np.array([[10, 20, 30], [40, 50, 60]]) print(my_arr) type(my_arr) my_arr[0][2] np.sum(my_arr) print(my_arr[1][0]) import matplotlib.pyplot as plt plt.plot([1, 2, 3, 4, 5], [1, 4, 9, 16, 25]) # x 좌표와 y 좌표를 파이썬 리스트로 전달합니다. plt.show() plt.scatter([1, 2, 3, 4, 5], [1, 4, 9, 16, 25]) plt.show() x = np.random.randn(1000) #