dictionay = {'key1': 'おこめ', 'key2': 'ごはん', 'key3': 'らいす'}
', '.join(map(lambda i:f'{i[0]} = {i[1]}' ,dictionay.items()))
'key1 = おこめ, key2 = ごはん, key3 = らいす'
dictionay = {'key1': 'おこめ', 'key2': 'ごはん', 'key3': 'らいす'}
', '.join(map(lambda i:f'{i[0]} = {i[1]}' ,dictionay.items()))
'key1 = おこめ, key2 = ごはん, key3 = らいす'