isinstance를 궁금하게 된 계기는 drf views.py를 조사하게 된 것이 계기였다. def exception_handler(exc, context): """ Returns the response that should be used for any given exception. By default we handle the REST framework `APIException`, and also Django's built-in `Http404` and `PermissionDenied` exceptions. Any unhandled exceptions may return `None`, which will cause a 500 error to be raised. """ if isinstance(exc, ..
1. error 해결법 setattr로 해결하기 사용법 setattr(obj,key,value) 만일 독자가 obj[key]=value 형식으로 했는데 제목과 같은 에러가 난다면 위와 같이 "setattr"로 해결해보는 것도 좋은 판단이다. 참고: https://stackoverflow.com/questions/8542343/object-does-not-support-item-assignment-error Object does not support item assignment error In my views.py I assign values before saving the form. I used to do it the following way: projectForm.lat = session_results..
python -m venv env 우선 가상환경 먼저 세팅을 해준다. 가상환경 작동하는 방법은 " .\env\Scripts\activate " 입니다. pip install django djangorestframework requests 설치 할 것은 위와 같다. django-admin startproject backend . django-admin startapp accounts 그 다음 카카오 시크릿 키와 장고 안에 기본적으로 가지고 있는 시크릿 키를 json파일로 옮기는 작업을 해줘야 한다. settings.py import os import json secret_file = os.path.join(BASE_DIR, "secrets.json") secrets = None with open(secre..
class check: name="python" def __hello__(self): return self.name print(hasattr(check,'__hello__')) #True/ 해당 클래스에 함수가 있는 지 확인 print(getattr(check,'name'))#python/ 해당 변수가 있는 지 확인하고 가져온다. setattr(check,'name','java') # 변수 값 변경 print(getattr(check,'name'))#java
1 2 3 4 5 6 7 8 9 10 11 12 def solution(n, arr1, arr2): answer = [] for i in range(n): str='' a1=list(format(arr1[i],'b').zfill(n)) ## 일반적으로 이진법으로 바꿀때는 bin이라고 작성하지만, format을 통하여 작성할때에는 format(num,'b')이라 한다. a2=list(format(arr2[i],'b').zfill(n)) ## zfill은 정해진 숫자에서 남는 부분을 0을 채워주는 메소드이다. for j in range(n): ## 그 외에도 rjust는 오른쪽으로 정렬하고 남는 자리는 정해준 숫자를 채워준다. num = "11".rjust(5,"0") => "00011" if int(a1[..
- Total
- Today
- Yesterday
- Pattern
- 자바
- 2021 KAKAO BLIND RECRUITMENT
- Linux
- Collections
- dockerignore
- 그래프
- DRF
- env
- 카카오
- ubuntu
- 프로그래머스
- BFS
- Celery
- headers
- Command Line
- django
- docker-compose
- PostgreSQL
- thread
- Spring
- docker
- 면접
- setattr
- 파이썬
- Java
- 알고리즘
- postgres
- 백준
- Python
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |