ZhangZhihui's Blog |
|
||
2022年1月27日
摘要:
Open the email, press ALT + ENTER, check the location field. 阅读全文
2022年1月24日
摘要:
def get_list_span(l: list): """ For list ['a', 'a', 'a', 'b', 'c', 'c', 'd', 'd', 'd', 'd'], its span list is [3, 0, 0, 1, 2, 0, 4, 0, 0, 0] . :param 阅读全文
摘要:
def get_dict_leaves_count(dic): """ If value of a key is a list, count all items in the list as leaves. :param dic: :return: """ if len(dic) == 0: ret 阅读全文
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 阅读全文
摘要:
for i in range(10, -1, -1): print(i) Output: 109876543210 阅读全文
摘要:
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 阅读全文
摘要:
阅读全文
2022年1月22日
摘要:
阅读全文
摘要:
from datetime import date def get_first_day_of_month(dt: date): return date(dt.year, dt.month, 1) 阅读全文
2022年1月20日 |
Copyright © 2024 ZhangZhihuiAAA
Powered by .NET 9.0 on Kubernetes |