오브젝트 갯수만큼 가져오기

kinghong97·2022년 3월 20일
0

10개 가져오기
Content.objects.all()[:10]

랜덤으로 10개 가져오기
import random
random.sample(list(Content.objects.all()), 10)

0개의 댓글