摘要: 定义 if PY2: # io.StringIO only accepts u'foo' with Python 2. from StringIO import StringIO def py2to3(cls): if hasattr(cls, '__unicode__'): cls.__str__ 阅读全文
posted @ 2021-04-06 15:31 该显示昵称已被使用了 阅读(53) 评论(0) 推荐(0) 编辑
摘要: https://mp.weixin.qq.com/s/ZnBzGL3wlWIVONrUV7_EPQ Echarts # 1. from django.http import JsonResponse from django.shortcuts import render def index_view 阅读全文
posted @ 2021-04-06 13:12 该显示昵称已被使用了 阅读(148) 评论(0) 推荐(0) 编辑
摘要: def 函数定义不会执行里面的语句 class 类的定义会执行里面的语句 def test_func(): print("test_func") # 不会执行 class setter(object): def __init__(self, method): self.method = method 阅读全文
posted @ 2021-04-06 10:25 该显示昵称已被使用了 阅读(978) 评论(0) 推荐(0) 编辑
摘要: 分类 在变量、方法命名中有下列几种情况: 0. xx 公有变量/方法 1. _xx 前置单下划线 2. __xx 前置双下划线 3. __xx__ 前后双下划线 4. xx_ 后置单下划线 结论 1. _名 的变量、函数、类在使用 from xxx import * 时都不会被导入。 2. __名字 阅读全文
posted @ 2021-04-06 10:07 该显示昵称已被使用了 阅读(86) 评论(0) 推荐(0) 编辑