학문의 길/머신러닝

python 변수 존재여부

lipnus 2018. 11. 5. 21:33
반응형

o check the existence of a local variable:

if 'myVar' in locals():
  # myVar exists.

To check the existence of a global variable:

if 'myVar' in globals():
  # myVar exists.

To check if an object has an attribute:

if hasattr(obj, 'attr_name'):
  # obj.attr_name exists.


반응형

'학문의 길 > 머신러닝' 카테고리의 다른 글

nunpy 행 합치기  (0) 2018.11.05
numpy 행렬자르기  (0) 2018.11.05
scikit-learn 패키지를 사용한 선형 회귀분석(Linear Regression)  (0) 2018.11.04
쥬피터 탄축키  (0) 2018.11.04
numpy 사용법  (0) 2018.11.04