You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
💡 Ctrl + M (Cmd + M on Mac)을 누른 후 해당 키를 입력하면 실행됩니다.
Colab에서 셀을 빠르게 조작할 때 활용해 보세요! 🚀
numpy code
# NumPy 라이브러리를 불러오고, 배열 출력 형식을 보기 좋게 설정합니다.
import numpy as np
# suppress=True는 과학적 표기법(예: 1.23e-10)을 억제하고
# 항상 고정 소수점 표기법(fixed point notation)을 사용
np.set_printoptions(suppress=True, precision=4)