본문 바로가기
728x90
반응형

분류 전체보기353

[Python] tuple tuple Tuple은 immutable list라고 자주 불릴 정도로 list와 유사하다. immutable이기 때문에 한번 assign된 이후 item의 update는 불가함. update가 안되기 때문에 list 보다 적은 수의 methods를 제공. 때문에 보다 적은 memory를 차지함. immutalbe이다 보니 dictionary의 key로 사용가능함. 읽기 전용의 sequence가 필요한 경우 많이 사용됨. 참고로 list는 comprehension으로 list가 생성되지만, tuple은 comprehension을 통해 generator를 반환한다. https://dsaint31.tistory.com/500 [Python] List Comprehension List comprehension.. 2023. 10. 6.
[Python] String : 문자열 String(문자열)이란?다음 URL에서 4.3. String Type을 참고.https://dsaint31.tistory.com/515 [Python] (Data) Type : Summary1. Type 이란? Programming에서 사용되는 모든 value 혹은 object 들의 종류 를 (data) type이라고 부름. 수학에서 숫자의 종류(type)를 실수, 정수, 자연수 등으로 나누는 것을 생각하면 쉽다. Programming에서는dsaint31.tistory.comstring formatting2024.09.04 - [Python] - [Py] Python에서 string formatting. [Py] Python에서 string formatting.Python에서 문자열에서 변수의 값을 출.. 2023. 10. 6.
[Python] Control Structure and Control Flow Control structure와 Control Flow란 무엇인가? http://ds31x.blogspot.com/2023/07/basic-control-structures-and-control.html Basic : Control Structures and Control Flow Control Structure 프로그램을 구성하는 statement (=excutable code)들이 실행되는 순서를 제어하는 방법을 abstraction한 것이 control structure이며 이를 통해 실행순서를 제어하는 것을 flow co... ds31x.blogspot.com 조건 분기 if, elif, else 2023.07.28 - [Python] - [Python] Boolean Operators, Rel.. 2023. 10. 6.
[Python] function 과 Scope, Name Space 정리 Function이란?https://dsaint31.me/mkdocs_site/CE/ch05/ch05_02_01_function/ BME228Function in the Programming Mathematics에서의 function과 약간의 차이점이 있으나 프로그래밍에서의 function은 많은 부분에서 Mathematics에서의 function과 유사함. 수학에서 function은 특정 계산들을 reuse하거나,dsaint31.mePython의 함수https://dsaint31.tistory.com/506 [Python] Function Definition, Call and Arguments이 문서는 function에 대한 간단한 소개를 하고 있다. 일부 자세한 내용들은 관련 URL을 추가하는 형태로 .. 2023. 10. 6.
[Python] Collections collections.abc 2024.04.15 - [분류 전체보기] - [Python] collections.abc [Python] collections.abc 2023.10.06 - [Pages] - [Python] Collections collections.abc 와 Python의 DataStructure. Python의 Data structure는 실제적으로 collections.abc 라는 abstract base class (abc) mechanism를 통한 hierarchy로 구성된다. 일반적으로 list, tuple ds31x.tistory.com list (sequence type) 2023.07.12 - [Python] - [Python] list (sequence type) : sum.. 2023. 10. 6.
Shell 관련 정리 Bash 사용법 01 https://ds31x.tistory.com/pages/Shell-%EC%9A%94%EC%95%BD-%EC%A0%95%EB%A6%AC-bash-%EA%B8%B0%EC%A4%80 shebang line 과 env 사용법 variable 및 반복구문 command substitution pipe, redirect, 다중명령어 2023. 10. 2.
728x90
반응형