问题描述
Docker查看日志时portainer报错信息如下:
Error grabbing logs: rpc error: code Unknown desc warning: incomplete log stream. some logs could not be retrieved for the following reasons: node klf9fdsjjt5tb0w4hxgr4s231 is not available报错…
将2位数表达的年份,转换为用4位数表达:
print("将列表中的2位数年份转换为4位数年份")
lst[88,89,90,00,99]
print(lst)
for index in range(len(lst)):if len(str(lst[index]))2:lst[index] 1900int(lst[index])elif len(str(lst[index]))1…