nathan_H

python - Module 본문

Programming Laguage/Python

python - Module

nathan_H 2019. 5. 1. 10:55

 

from collections import *

*는 collections에 있는 것 모두 가져와라

everything이라는 의미를 가지고 있다.

 

f = 3 
print(f)

def f(x):
	print(x + 1)
    
  print(f + 5)
  
  

python은 인터프리터 방식이기 때문에

변수 이름 및 함수 이름등이 

겹칠 경우 맨 아래에 있는 것을

기준으로 실행이된다.

 

그래서 python에서 변수명 및 함수명 선정은

겹쳐선 안되고 정말 중요하다.

 

 

'Programming Laguage > Python' 카테고리의 다른 글

python - 모듈 수정  (0) 2019.05.01
python - __name__  (0) 2019.05.01
python - namedtuple  (0) 2019.04.30
python class - duck typing  (0) 2019.04.30
python - class method type.  (0) 2019.04.30
Comments