Python关联数组?

时间:2012-03-26 03:12:52

标签: python regex perl

我在Perl中做过这个,但你在python中是怎么做的?

示例:

my %lineBuffer; #with a "%" sign

$linebuffer; #to call it indiviadually

这就是我想在python中做的事情。

linebuffer []

使用标量我会做什么?

lineBuffer [result.group(1)]

2 个答案:

答案 0 :(得分:4)

是的,Python有它们,虽然它称它们为“词典”;见§5.8 "Mapping Types — dict" in the Python v2.7.2 documentation

答案 1 :(得分:3)

您正在寻找dict。它创建了一个字典,允许您使用键访问集合中的值。