AboutPython

· AboutPython
Python에서 수명이 다한 객체는 어떻게 메모리가 회수되나요? 더보기 Python에서 수명이 다한 객체는 Reference Counting을 통해 메모리가 회수됩니다. 모든 객체마다 자신이 참조되고 있는 개수를 들고 있다가 이 숫자가 0이 되면 메모리에서 삭제하는 방식 입니다. Cyclic Garbage Collection 에 대해 설명해보세요 더보기 linked list 객체와 같이 순환 참조(reference cycle)이 있는 객체에 대해서는 Reference Counting 만으로 객체를 제거할 수 없기 때문에 cyclic garbage collection을 사용합니다. 모든 객체에 대해 reference를 graph를 그리며, 접근 불가능한 cycle을 찾아 garbage에 해당하는 객체를 찾..
· AboutPython
Union을 쓰는 이유 # multi_param.py from typing import Union from fastapi import FastAPI app = FastAPI() @app.get("/users/{user_id}/items/{item_id}") def read_user_item(user_id: int, item_id: str, q: Union[str, None] = None, short: bool = False): item = {"item": item_id, "owner_id": user_id} if q: item.update({"q": q}) if not short: item.update( {"description": "This is an amazing item that has a long..
· AboutPython
[find] find( 찾을 문자, 찾기 시작하는 위치 ) >>> s = 'abcde fghijklmnj' >>> s.find('j') 10 >>> s.find('j',10) 10 >>> s.find('j',11) 15 >>> s.find('z') -1 [startswith] startswith( "문자" 로 시작하는지, 시작지점 ) >>> s = 'abcde fghijklmnj' >>> s.startswith('a') True >>> s.startswith('a',1) False >>> s.startswith('c',2) True [endswith] endwith('문자'로 끝나는지, 탐색을 시작하는 인덱스, 탐색이 끝나는 인덱스) >>> s = 'abcde fghijklmnj' >>> s.endswi..
· AboutPython
[readlines()] 파일의 모든 데이터를 읽어서 리스트 형태로 반환한다. from url import * with open(url()+'hello.txt','r') as f : print(f.readlines()) print(type(f.readlines())) ''' ['hello python\n', 'hello c/c++\n', 'hello java\n', 'hello javascript'] ''' 다음과 같이 개행을 포함해서 각 줄을 요소로 하는 리스트를 반환한다. [readline()] .한 행을 읽어서 문자열로 반환한다. from url import * with open(url()+'hello.txt','r') as f : # print(f.readlines()) # print(type(f..
scone
'AboutPython' 카테고리의 글 목록 (2 Page)