Python의 논리 연산자는 C언어와 비슷하지만 차이점이 있다. python은 "!"를 not으로 인식하지 않는다. Python은 not을 "not"이라는 단어로 사용한다. condition1 = TRUE condition2 = FALSE condition3 = not condition1 print(condition1) # TRUE print(condition2) # FALSE print(not condition1) # FALSE print(condition3) # FALSE print(condition1 and condtion2) # FALSE c.f. ~(tilde) operator는 bit연산에서 각 digit을 0과 1을 뒤집은 결과 값을 의미한다. number = 2 라면, number는 비트로..
출처: www.python.org/dev/peps/pep-0257/ PEP 257 -- Docstring Conventions The official home of the Python Programming Language www.python.org What is a Docstring? Docstring 이란 무엇인가? A docstring is a string literal that occurs as the first statement in a module, function, class, or method definition. Such a docstring becomes the __doc__ special attribute of that object. Docstring은 문자열 리터럴String Lite..