2022年4月6日

A*

摘要: AStar 23.644962310791016 BidirectionalAStar 7.2115092277526855 阅读全文

posted @ 2022-04-06 22:17 -G 阅读(20) 评论(0) 推荐(0) 编辑

can not import Protocol from typing

摘要: https://stackoverflow.com/questions/54274630/can-not-import-protocol-from-typing 阅读全文

posted @ 2022-04-06 21:00 -G 阅读(21) 评论(0) 推荐(0) 编辑

python PEP

摘要: PEP是什么? PEP的全称是Python Enhancement Proposals,其中Enhancement是增强改进的意思,Proposals则可译为提案或建议书,所以合起来,比较常见的翻译是Python增强提案或Python改进建议书。 我个人倾向于前一个翻译,因为它更贴切。Python核 阅读全文

posted @ 2022-04-06 10:44 -G 阅读(53) 评论(0) 推荐(0) 编辑

python函数注释,参数后面加冒号:,函数后面的箭头→是什么?

摘要: python的函数注释: def f(text:str,max_len:'int>0'=80) ->str: """这个是函数的帮助说明文档,help时会显示""" return True """ 函数声明中,text:str text 是参数 :冒号后面 str是参数的注释。 如果参数有默认值,还 阅读全文

posted @ 2022-04-06 08:25 -G 阅读(131) 评论(0) 推荐(0) 编辑

导航