阅读目录 isinstance和issubclass 反射 setattr delattr getattr hasattr __str__和__repr__ item系列 __getitem__ __setitem__ __delitem__ __del__ __new__ __call__ wit ...
分类:
其他好文 时间:
2020-03-10 11:36:50
阅读次数:
68
各种类型的字符用于各种功能。 本章详细讨论了YAML中使用的语法,并重点介绍了字符操作。 指示符字符 指示符包括用于描述YAML文档内容的特殊语义。 下表详细说明了这一点。 编号字符功能 1 _ 它表示块序列条目 2 ? 它表示映射键 3 : 它表示映射值 4 , 它表示流集合条目 5 [ 它开始流 ...
分类:
其他好文 时间:
2020-03-06 01:07:41
阅读次数:
112
django初始 webHTTP django 静态配置 创建APP 简单orm django简单图书管理系统 __str__ 和 __repr__ Django中的一对多(外键约束) 进阶版一对多 多表查询 django模版系统 CBV和FBV 给视图加装饰器 form表单上传文件 Respons ...
分类:
其他好文 时间:
2020-03-02 14:41:39
阅读次数:
201
In a given grid, each cell can have one of three values: the value 0 representing an empty cell; the value 1 representing a fresh orange; the value 2 ...
分类:
其他好文 时间:
2020-03-01 12:42:36
阅读次数:
56
Spring Bean 的初始化流程如下: 实例化 Bean 对象 Spring 容器根据配置中的 Bean Definition(定义)中实例化 Bean 对象。 Bean Definition 可以通过 XML,Java 注解或 Java Config 代码提供。 Spring 使用依赖注入填充 ...
分类:
编程语言 时间:
2020-02-26 21:08:59
阅读次数:
80
本论文是一篇介绍使用CNN对句子进行分类的论文。本文将介绍使用TensorFlow来实现整个论文的实验过程,一方面熟悉使用TensorFlow API,另一方面加深对CNN在NLP上的应用理解。 对于文本分类问题,常规方法就是抽取文本的特征,使用doc2evc或者LDA模型将文本转换成一个固定维度的 ...
分类:
其他好文 时间:
2020-02-24 13:04:57
阅读次数:
77
题目: Given a binary tree, find the length of the longest path where each node in the path has the same value. This path may or may not pass through the ...
分类:
编程语言 时间:
2020-02-23 19:56:52
阅读次数:
92
记录说明 yaml 文件解析的方法及str、repr函数的区别 1. yaml 文件解析 config.yml 解析yaml 文件 2. str() 和 repr() 函数的区别说明 Python 中将某一类型的 变量 或者 常量 转换为字符串对象通常有两种方法,str() 或者 repr(). s ...
分类:
编程语言 时间:
2020-02-23 16:45:22
阅读次数:
103
Given an array with n objects colored red, white or blue, sort them in-place so that objects of the same color are adjacent, with the colors in the or ...
分类:
其他好文 时间:
2020-02-17 23:42:05
阅读次数:
71
Given n non-negative integers representing an elevation map where the width of each bar is 1, compute how much water it is able to trap after raining. ...
分类:
移动开发 时间:
2020-02-17 19:37:00
阅读次数:
78