ZhangZhihui's Blog  

2022年1月23日

摘要: def convert_sqlite_row_to_dict(row, n: int): """ Convert a single row of rows returned by a select query of sqlite3. :param row: :param n: The number 阅读全文
posted @ 2022-01-23 22:08 ZhangZhihuiAAA 阅读(64) 评论(0) 推荐(0) 编辑
 
摘要: for i in range(10, -1, -1): print(i) Output: 109876543210 阅读全文
posted @ 2022-01-23 19:38 ZhangZhihuiAAA 阅读(20) 评论(0) 推荐(0) 编辑
 
摘要: def update_dict_cascade(dict_1, dict_2): """ Update dict_1 with dict_2 in a cascade manner. :param dict_1: The dict to be updated. :param dict_2: The 阅读全文
posted @ 2022-01-23 19:06 ZhangZhihuiAAA 阅读(13) 评论(0) 推荐(0) 编辑
 
摘要: 阅读全文
posted @ 2022-01-23 16:52 ZhangZhihuiAAA 阅读(12) 评论(0) 推荐(0) 编辑