I have a list of followers, I'd like to follow. The one problem that I'm having is that it appears the user_id has to be an int, not a string, and can't have the trailing L. I have some large numbers as id. For example
user_id = 900000000000000L
I tried changing using a few suggestions like
format(user_id, 'd')
but it returns a string.
I looked at:
However hexadecimal isn't an option for me. I understand in C after a certain point an int can't be expressed, and you need a long or double long. however is there a way to override the L in python?