04 2021 档案
摘要:python之元类 1.类可以由默认的type来创建 class People: def __init__(self,name): self.name = name def play(self,s): print(self.name,"在玩",s) p = People("xxx") p.play(
阅读全文
摘要:一 模板简介 在刚刚介绍完的视图层中我们提到,浏览器发送的请求信息会转发给视图函数进行处理,而视图函数在经过一系列处理后必须要有返回信息给浏览器。如果我们要返回html标签、css等数据给浏览器进行渲染,我们可以在视图函数中这么做 def current_datetime(request): now
阅读全文
摘要:go打开文件模式 O_RDONLY // open the file read-only. O_WRONLY // open the file write-only. O_RDWR // open the file read-write. // The remaining values may be
阅读全文
摘要:strconv模块 1. 将123转成转成字符串的"123" b:=strconv.Itoa(123) res:=fmt.Sprintf("%d",123) res:=strconv.FormatInt(68,10) 2. 将字符串的"123"转成123 a := "123" res,e:=strc
阅读全文