码迷,mamicode.com
首页 >  
搜索关键字:self    ( 14215个结果
python 二叉树的遍历及常见操作
一、基础 1、 定义节点类 # Definition for a binary tree node. class TreeNode: def __init__(self, x): self.val = x self.left = None self.right = None 2、给定一张图 二、基础 ...
分类:编程语言   时间:2020-06-13 13:04:01    阅读次数:55
leetcode-反转链表206
206. 反转链表 反转一个单链表。 示例: 输入: 1->2->3->4->5->NULL 输出: 5->4->3->2->1->NULL 进阶: 你可以迭代或递归地反转链表。你能否用两种方法解决这道题? class Node(): def __init__(self, data): self.v ...
分类:其他好文   时间:2020-06-13 12:46:44    阅读次数:59
ios自动化WebDriverAgent测试报错
解决方法: 修改 WebDriverAgentLib/Utilities/FBFailureProofTestCase.m 第26行 self.internalImplementation = (_XCTestCaseImplementation *)[FBXCTestCaseImplementat ...
分类:移动开发   时间:2020-06-13 12:41:10    阅读次数:172
通过nginx代理的odoo报表打印时总是超时 问题解决 (转)
转自:http://blog.sina.com.cn/s/blog_53d318170102wvnm.html 背景 将odoo服务器部署在公网上, 服务器没有公网地址, 前端使用nginx提供对外服务的公网ip和tcp端口 qweb-html类型的报表能正常在浏览器上显示,但打印时浏览器上出现如下 ...
分类:其他好文   时间:2020-06-13 11:13:27    阅读次数:67
107.二叉树的遍历层次II
class TreeNode: def __init__(self, x): self.val = x self.left = None self.right = Nonefrom typing import Listclass Solution: # 迭代的想法 def levelOrderBot ...
分类:其他好文   时间:2020-06-13 00:42:24    阅读次数:46
odoo search之时间搜索,时间段查询
<field name="date_order" string="开始时间" filter_domain="[('date_order','>',self)]"/> <field name="date_order" string="结束时间" filter_domain="[('date_order ...
分类:其他好文   时间:2020-06-13 00:18:51    阅读次数:164
6.12
class Solution(object): def threeSum(self, nums): res_list=[] nums.sort() for i in range(len(nums)): if(nums[i]>0): break if i>0 and nums[i]==nums[i-1 ...
分类:其他好文   时间:2020-06-13 00:12:53    阅读次数:120
django设置cookie
两个例子: 使用模板 from django.shortcuts import render, HttpResponse from rest_framework.views import APIView class Order(APIView): def get(self, request, *ar ...
分类:其他好文   时间:2020-06-12 22:59:34    阅读次数:104
Python类之super()与私有属性
super()有参数写法: # 1.定义父类 class A(object): def __init__(self): self.num = 1 def info_print(self): print(self.num) class C(A): def __init__(self): self.nu ...
分类:编程语言   时间:2020-06-12 20:19:47    阅读次数:99
[Python自学] PyQT5-QPushButton、QRadioButton、QCheckBox、QComboBox控件
一、QPushButton控件 QAbstractButton是所有按钮空间的父类,提供了一系列按钮共用方法。 1.按钮的可选中状态 QPushButton虽然是一个普通按钮,但也可以由checkbox那样的选中状态(按下和弹起)。 def initUI(self): button1 = QPush ...
分类:编程语言   时间:2020-06-12 17:34:08    阅读次数:82
14215条   上一页 1 ... 58 59 60 61 62 ... 1422 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!