1차 구독/구매 커머스 웹서비스 (kukka)2차 kakao맵을 기반으로 한 매장 검색 (zigbang)
https://blog.etianen.com/blog/2013/06/08/django-querysets/ https://docs.djangoproject.com/en/3.1/ref/models/querysets/#iterator queryset cache evalua
Authentication Hash와 Salting을 반복하여 Streching. one-way hash 역으로 돌리면 원래 값이 나온다. (ex. rainbow table) 추가 요소로 원복에 걸리는 시간을 늘린다. (ex.bcrypt...) > https://au
Why are there so many numeric types (bit, int, float, double, long)?
concatenating / f string https://www.datacamp.com/community/tutorials/f-string-formatting-in-python list / dictionary > Lists are ordered sets of ob
Lists > Lists are mutable sequences, typically used to store collections of homogeneous items. Using a list comprehension: [x for x in iterable] Tupl
sys.modules > dictionary including imported modules and packages. sys.path > list of strings(path of files) sys? > https://docs.python.org/3/library/sys.html#sys.builtinmodulenames ('abc', 'ast',...
(a,b) are positional parameter(c=none) is optional parameter(r="w") is keyword parameter(d=\[]) is list parameter(\*ae) is keyword-only(\*\*ab) is var
block 요소 바로 옆(좌우측)에 다른 요소를 붙여넣을 수 없다 width, height, margin, padding 속성이 모두 반영 > # inline 요소끼리 서로 한 줄에, 바로 옆에 위치할 수 있다 텐트의 크기 만큼만 공간을 차지하도록 되어 있기 때문에 width와 height 속성을 지정해도 무시 > # inline-block 요소...
Semantics 언어학 및 논리학의 기본 분야 중의 하나로 말이나 글의 의미 또는 뜻을 연구하는 분야. 단어의 의미들 사이의 관계에만 적용되는 것이 아니라 구 (언어), 절 (언어), 문장, 텍스트의 의미를 논하는 데 적용됨 이는 프로그래밍 언어를 이루는 요소
문제 1. > pages 는 find를 통해 생성된 여러 a 의 list. pages 에서 span을 찾으려 했으나 에러발생. > for와 find를 이용하여 list 안에 각각의 요소들에서 원하는 값을 찾아낸다. 문제 2. > 불필요한 span까지 출력된다.