C++ 관련 유용한 자료 모음 - 간략한 C++ 관련 정보 (https://www.cplusplus.com/) - 자세한 C++ 관련 정보 (https://en.cppreference.com/w/) - C++ 강좌 (한글) (https://modoocode.com/135) - C++ 관련 라이브러리 모음 (링크) - C++ 버전별 추가 기능 (링크) - Modern C++ (링크) [Programming]/[C++] 2020.11.05
Python 관련 유용한 정리들 모음 * Python 기본 문법 및 간단한 동작들 (링크) Comprehensive Python Cheatsheet Non-Local If variable is being assigned to anywhere in the scope, it is regarded as a local variable, unless it is declared as a 'global' or a 'nonlocal'. def get_counter(): i = 0 def out(): nonlocal i i += 1 return i return out MRO determines the order in gto76.github.io * Python 관련 라이브러리 정리 목록 (링크) [Programming]/[Python] 2020.11.04
python numpy 함수 정리 (정리중) 라이브러리 설치하기 $ pip install numpy 라이브러리 불러오기 import numpy as np 행렬 생성하기 ● 기본 행렬 만들기 a = np.array([1, 2, 3, 4]) print(a) b = np.array([[1, 2, 3], [4, 5, 6]]) print(b) [Programming]/[Python] 2020.10.12