# coding=utf-8# This is a sample Python script.fromdriverimportKVprint("-------------------start kv test--------------------")kv=KV()result=kv.setStorageSync("aiot","amp")print(result)result=kv.getStorageSync("aiot")print(result)result=kv.removeStorageSync("aiot")print(result)print("-------------------end kv test--------------------")