我的问题是为什么 MySQL 行的整数值有一个“L”后缀?以下是详细信息:
下面的字典——为了便于展示,这里人工格式化——
{'estimated': '',
'suffix': '',
'typeofread': 'g',
'acct_no': 901001000L,
'counter': 0,
'time_billed': datetime.datetime(2012, 5, 1, 9, 5, 33),
'date_read': datetime.datetime(2012, 3, 13, 23, 19, 45),
'reading': 3018L,
'meter_num': '26174200'}
由 MySQL 数据库表的列组成,该列压缩了从表中读取一次的结果。
我可以通过将这些值传递给 int() 来删除“L”,因此如果该字典位于名为 snapped_read 的变量中,我可以这样做:
int(snapped_read['reading'])
并将3018L
更改为3018
.
我只是好奇为什么整数会以这种方式出现。