views:

99

answers:

3

This has been bugging me every since I started to use Python - in PHP you have this ability to use a string as a key in an array. PHP calls these associative arrays. Python calls these dictionaries.

Does anyone know of a premade chart that will let me see what the different terminology is in different languages. For example:

PHP             | Python
Associative array | Dictionary

+1  A: 

I don't know where to find a chart, but Wikipedia has a detailed article about associative arrays in various languages

Skywalker
A: 

Hi,

I hope the below URL will solve your issue...this is ant a chat but see this blog, which express the performance management.

http://www.insideria.com/2008/04/dictionaries-and-associative-a.html

VAC-Prabhu
A: 

You could keep a handy cheatsheet for your reference,

for python checkout http://www.addedbytes.com/download/python-cheat-sheet-v1/png/

for PHP checkout http://www.addedbytes.com/cheat-sheets/php-cheat-sheet/

phoenix24