'Language' 카테고리의 글 목록 (3 Page)
-
HTTP Method ( GET, POST )
모든 백엔드의 기능은 사실상 API 라는 표현을 쓰지않지만 간단하게 말하면 API로 구축되어 있다고 말할 수 있다. API란 서버와 클라이언트를 연결해서, 특정 기능을 수행해주는 것 python 에서는 requests.get(. . .) => get( 가져온다 ) 여기서 get은 HTTP 메소드 이름을 말합니다. (.get, .post, .patch, .put, .delete) GET ( requests.get ) POST ( requests.post ) HEAD, OPTIONS, PUT, PATCH, DELETE . . . GET HTTP Method GET 방식은 URL Parameter를 통해서 정보를 넘기는 방식이다. 예를 들어 아래의 네이버 검색을 살펴보겠습니다. https://search.na..
Language/Python
2019. 12. 12.
-
피보나치 수열
문제(https://projecteuler.net/problem=2) Each new term in the Fibonacci sequence is generated by adding the previous two terms. By starting with 1 and 2, the first 10 terms will be: 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, ... By considering the terms in the Fibonacci sequence whose values do not exceed four million, find the sum of the even-valued terms. 풀이 a = 1 b = 2 for i in range(0,10): if i == 9: ..
Language/Python
2019. 7. 17.
💲 추천 글