摘要:
Python3中的configparser模块 转载自 "https://blog.csdn.net/atlansi/article/details/83243478" [TOC] 模块简介 该模块适用于读取配置文件,文件的格式与windows ini文件类似,可以包含一个或多个节(section) 阅读全文
摘要:
python使用@property @x.setter @x.deleter @property可以将python定义的函数“当做”属性访问,从而提供更加友好访问方式,但是有时候setter/deleter也是需要的。 只有@property表示只读。 同时有@property和@x.setter表 阅读全文
摘要:
go语言——strings和strconv strings strconv 阅读全文
摘要:
go语言——map 创建map 默认值:nil,相当于空 nil的map,不能直接使用 map的使用 map的遍历 map与slice 阅读全文