본문 바로가기
728x90
반응형

Python156

[Python] PEP 8 : Style Guide for Python Code PEP란 "Python Enhancement Proposal" 의 abbreviation으로 Python의 새로운 기능을 제안하거나 스타일 가이드 등이 제시된 문서임. 그 중에서 PEP 8은 일종의 Code Convention으로 코딩 스타일에 대한 권장임. https://peps.python.org/pep-0008/ PEP 8 – Style Guide for Python Code | peps.python.org PEP 8 – Style Guide for Python Code Author: Guido van Rossum , Barry Warsaw , Nick Coghlan Status: Active Type: Process Created: 05-Jul-2001 Post-History: 05-Jul-200.. 2023. 8. 4.
[Python] asterisk * 사용하기 : unpacking, packing C언어에서 pointer 연산자인 * (asterisk)는 Python에서 상당히 낯설게 동작한다. (특히, PEP3132, PEP448 등에서 그 기능이 무지 많아져서... --;;) double asterisk ** 와 함께 packing과 unpacking 기능으로 정말 많이 사용되기 때문에 한번은 정리를 해보는게 도움이 된다. 크게 function과 관련되어서는 두가지 mode로 동작한다. function을 define 할 때 parameter에서 사용되는 경우 (= function header에서 사용되는 경우) : packing function call에서 argument로 사용되는 경우 : unpacking 이와 유사하지만 조금 색다르게 보이는 경우도 다음과 같이 있다. assignment의.. 2023. 7. 30.
[Python] while statement, break and continue Python의 경우, loop structure로 while statement와 for statement를 제공한다. Contol Flow와 Control Structure에 대한 개념은 다음 URL을 참고 : http://ds31x.blogspot.com/2023/07/basic-control-structures-and-control.html 참고로 do-while statement 는 while statement 만으로도 구현가능하기 때문에 Python에선 지원하지 않음. for statement가 iterator object와 함께 사용되는 것과 달리, while statement는 if statement와 매우 유사한 구조로 repetition을 가능하게 함. 일반적인 구조. while condi.. 2023. 7. 28.
[Python] if, elif, else statements if, elif, else statements (조건분기문)프로그램의 flow control를 담당함. (loop문과 함께)Flow control을 위한 Control Structures에 대한 내용은 다음 URL을 참고.http://ds31x.blogspot.com/2023/07/basic-control-structures-and-control.html C언어의 if, else if, else 와 매우 유사함.설명다음은 이들 사용을 위한 간략한 예이다.if condition: # if statement if_block # if statement's code blockelif condition: # elif statement elif_block # elif statement's co.. 2023. 7. 28.
[Python] Boolean Operators, Relational Operators, and Membership Operator Boolean Operators기본 boolean operator는 다음 3가지로 구성됨.and : and 연산자. (binary op.) : C언어 등에선 &&에 해당.or : or 연산자. (binary op.) : || 에 해당.not : not 연산자. (unary operator로 operand가 하나임.) : !에 해당.참고로 boolean operator로 묶여 있는 combining comparisons의 경우, short-circuit evaluation이 수행됨.or의 경우 왼쪽에서 오른쪽으로 evaluation이 이루어지는 도중 하나라도 True가 나오면 뒤에 대해 evaluation을 하지않고 True를 반환.and의 경우는 하나라도 Flase가 나오면 이후 evaluation을 수.. 2023. 7. 28.
[matplotlib] line 및 marker 설정하기. 기본적으로 graph에서 사용되는 line 및 marker의 스타일 (유형, 굵기, 색, 마커)을 변경하는 것은Axes에서 제공하는 다양한 graph를 그리는 모든 메서드들에서 필요하기 때문에 공통적인 parameters가 제공됨. 다음이 많이 사용되는 것들을 정리해 놓은 것임.parameterdesc.valuelinestylels로도 쓰이며, 선의 종류.'-'  : solid(실선), ':' : dotted(점선), '--' : dashed(파선), '-.' : dashdot(파점선)linewidthlw로도 쓰이며, 선의 굵기를 지정floatcolor선의 색'w' : white 'r' : red 'g' : green 'b' : blue 'y' : yellow 'c' : cyan 'm' : magenta.. 2023. 7. 21.
728x90
반응형