When I input the variable a
a = int(1388620800)*1000
(of course) this variable is returned
1388620800000
But in the Google Appengine Server, this variable is changed by https://cloud.google.com/appengine/docs/python/datastore/typesandpropertyclasses#int
1388620800000L
How to convert 1388620800000L to int type in Appengine?
EDIT
I will print this number for JSON. In the local Python2.7, the variable 'a' is just integer. But in the appengine server, the variable 'a' has string 'L'. I solved it using str() and .replace('L',''), but I wonder how to solve it with changing number type.