
September 29th, 2003, 02:55 PM
|
|
Contributing User
|
|
Join Date: Jul 2003
Posts: 133
Time spent in forums: < 1 sec
Reputation Power: 10
|
|
Also, if you want to create a dictionary with string keys, you can write:
Code:
>>> dict(alfa="a", beta="b", gamma="g")
{'beta': 'b', 'alfa': 'a', 'gamma': 'g'}
|