我编写了一些代码来从 SQL 数据库查询一行,
zip
带有列名的值,从而生成这个字典:
{'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'}
请注意,例如,
'reading'
的值写为 3018L
,而不仅仅是 3018
。 为什么?
我发现我可以通过用
L
转换值来删除 int
,但我想了解它的含义。
因为在 Python 3 之前的 Python 版本中,长整数文字用
l
或 L
后缀表示。在Python 3中,int
和long
已合并为int
,其功能与过去的long
非常相似。
请注意,从技术上讲,Python(2) 的
int
相当于 C 的 long
,而 Python 的 long
更像是具有无限精度的 BigNumber
类型的东西(现在 Python 就是这种情况) 3 的 int
类型。)
http://docs.python.org/library/stdtypes.html#numeric-types-int-float-long-complex
L
适用于 long
数据类型。
例如,
age = 24 # int
bankBalance = 20000005L # long
因为它们不完全是整数,所以它们是“长整型”。
https://docs.python.org/2/library/stdtypes.html#typesnumeric
请注意,这仅适用于 Python 2。在 Python 3 中,
int
和 long
都统一为 Python 2 所称的 long
,即具有无限精度的整数值。
不过,他们通常不会带来太多麻烦
>>> a=1
>>> b=long(1)
>>> a
1
>>> b
1L
>>> a==b
True
关于此的其他 stackoverflow 问题:Python 如何管理 int 和 long?