以下のfunctionで、2つのリストの要素が全ておなじかとうをチェックすることができます。
def checkEqual(L1, L2):
return len(L1) == len(L2) and sorted(L1) == sorted(L2)
def checkEqual(L1, L2):
return len(L1) == len(L2) and sorted(L1) == sorted(L2)
find /path/to/base/dir -type d -exec chmod 755 {} +
find /path/to/base/dir -type f -exec chmod 644 {} +
from pprint import pprint record = {'kinesis': {'data': 'test hoge ...'}} pprint record