분류 전체보기(702)
-
migrate가 아무 작동을 하지 않는 경우
makemigrations에서 작업내역이 존재하는데도, migrate 수행결과가 아래와 같다면, DB의 django_migrations 테이블의 해당 app 내역을 삭제하는 것도 방법임 Running migrations: No migrations to apply.
2020.12.29 -
python manage.py makemigrations app_label
class Schedule(models.Model) : ... class Meta: app_label = 'support' class의 app_label 기준으로 마이그레이션을 함
2020.12.29 -
No installed app with label 'App이름'.
python manage.py makemigrations test 수행시 에러 발생 setting.py에 아래 내용을 추가해야 함 INSTALLED_APPS = [ 'test.apps.TestConfig', 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', ]
2020.12.29 -
한글폰트 확인
fc-list :lang=ko
2020.12.29 -
2차배열 정렬
from operator import itemgetter results = [ [1, 3, 5], [2, 5, 8], [3, 1, 2], ] results.sort(key=itemgetter(1)) print(results) [ [3, 1, 2], [1, 3, 5], [2, 5, 8] ]
2020.12.27 -
list 순서 뒤집기
list = [ 1, 7, 5] list.reverse() print(list) [5, 7, 1] temp = list(reversed(list)) print(temp) [1, 7, 5] print(list) [5, 7, 1]
2020.12.27