|
In the description of the problem there's an L at the end of the total tuition in this example. Is it just a typo?
|
The question has been closed for the following reason "The question is answered, right answer was accepted - Thanks" by sheelagh 08 Mar '12, 16:17
|
The standard type for a simple number is an integer. When the number is too big for an integer, it is automatically converted into a long. Here is the Python documentation on longs. |
|
It is because the number is to big for a regular integer, the L denotes a Long. |