mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-18 20:41:22 +07:00
10 lines
89 B
Python
10 lines
89 B
Python
a = {
|
|
'c': 99999
|
|
}
|
|
print "Hello, there."
|
|
print a['c']
|
|
a = {
|
|
'b': 1,
|
|
'c': 2
|
|
}
|