UIFlow Guide
map function is a common built-in function or method in many programming languages. It is mainly used for iterable objects. Here is how to use map function
from m5stack import *
from m5ui import *
from uiflow import *
date = None
date = {'a':1,'b':2,'c':'3'}
print('a' in date.keys())
print(date['b'])
date['d'] = '4'
date['a'] = '11'
date.pop('b')
date.clear()
date['a'] = '11'
print('a' in date.keys())
date['d'] = '4'
date.pop('b')
print(date['b'])
date.clear()
date = {'a':1,'b':2,'c':'3'}