On Thu, Aug 27, 2009 at 7:08 AM, Léon Dignòn<leon.dig...@gmail.com> wrote:
>
>>>> from django.contrib.auth.models import User
>>>> u = User.objects.get(id=1)
>>>> u
> <User: leon>
>>>> print u
> leon
>>>> type(u)
> <class 'django.contrib.auth.models.User'>

Alternatively:

>>> u.__class__.__name__
'User'

-- dz

--~--~---------~--~----~------------~-------~--~----~
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