mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
9 lines
88 B
Python
9 lines
88 B
Python
a = {
|
|
'c': 99999
|
|
}
|
|
print "Hello, there."
|
|
a = {
|
|
'b': 1,
|
|
'c': 2
|
|
}
|
|
print a['c'] |