Skip to content

Latest commit

 

History

3 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 

Repository files navigation

Example:
m = Map({'name': 'Dict with dot'}, year=2023, hobby=['dance', 'sleep'])
print(m) #{'name': 'Bobo', 'year': 2023, 'hobby': ['dance', 'sleep']}

print(m.name) # Dict with dot

print(m.year) # 2023

# add
m.city = 'Dushanbe'
or
m['city'] = 'Dushanbe'

# edit value
m.name = 'I am super'
or
m['name'] = 'I am super'

#delete
del m.year
or
del m['year']

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages