Commit 4bdd60d7 by BellCodeEditor

auto save

parent ac951c98
Showing with 6 additions and 5 deletions
'a':1 'b':2 'c':4
dict_char = {'a':1 ,'b':2 ,'c':4}
print(dict_char)
dict_char = {'a':1 ,'b':2 ,'c':4}
print(dict_char['b'])
# 'a':1 'b':2 'c':4
# dict_char = {'a':1 ,'b':2 ,'c':4}
# print(dict_char)
# dict_char = {'a':1 ,'b':2 ,'c':4}
# print(dict_char['b'])
dict_char = {'a':1 ,'b':2 ,'c':4}
dict_char['c'] = 3
print(dict_char['c'])
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment