[Django]-Django return user model id with L

10👍

The “L” suffix is just python telling you that it is using a large integer to represent the ID. It only affects what you see on the console, and shouldn’t interfere at all with the way that python is using that number for other purposes.

Leave a comment