Hi,

can I remove an objects from the queryset:

In [138]: from CHALLENGE.models import start_game

In [139]: start_game.objects.all()
Out[139]: [<start_game: 27>, <start_game: 26>, <start_game: 23>]

In [140]: games = start_game.objects.all()

In [142]: games
Out[142]: [<start_game: 27>, <start_game: 26>, <start_game: 23>]


can I delete the objects with id = 27, for obtain this:

In [142]: games
Out[142]: [<start_game: 26>, <start_game: 23>]


Thanks,

Alfredo

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to