python练习-高级特性
# 高级特性 # 1. 切片和列表生成器 from collections.abc import Iterable, Iterator list_one = list(range(10)) print(list_one[:3]) print(list_one[2:7]) print(list_one[-5:-1]) # 取后5个数 print(list_one[-5:]) # 取偶数 pr...
# 高级特性 # 1. 切片和列表生成器 from collections.abc import Iterable, Iterator list_one = list(range(10)) print(list_one[:3]) print(list_one[2:7]) print(list_one[-5:-1]) # 取后5个数 print(list_one[-5:]) # 取偶数 pr...
# Python demo for lihz # 1. Hello World print("Hello World Python") # 2. 输入输出 print("The quick brown fox", "jumps over the lazy dog") print("100", "+", "200", "=", 100 + 200) # name = input("What ...
更新节奏缓慢,因为每晚学习注意力不够集中,学习进展缓慢。本还给自己找了一大堆其他理由,但摸着良心问自己,似乎只有这个理由说的通。 想搞懂的太多,却始终没搞明白。先看一个用Netty编写的NIO Server的样例。 package com.coderli.nettylab.guide; import io.netty.bootstrap.ServerBootstrap; impor...
距离上一篇博文已经过去了半个多月。这期间有一周多的时间用在了准备单位举办的英语竞赛上。余下的时间沉迷于陪孩子玩耍和睡觉,日复一日。 当然,我也抽空学习了Java NIO(None-Blocking / New IO) 一些知识,现总结如下。 Java的非阻塞IO的原理是采用了操作系统的多路复用器机制,即在一个通道(channel)上,注册一个事件选择器(selector)及各种事件(读、...
2012年,由于项目的需要我第一次接触到了Netty,当时Netty还处于3.x版本。我用十几篇博文记录了自己自学Netty的过程,虽然内容浅薄,但没想到被各处转载,我想主要是因为当时Netty的资料确实较少的缘故。 五六年过去了,Netty早已发展到了4.x系列,好奇也好,求知也罢,我打算重学Netty,虽然严格来说,我已不是IT从业人员,但我仍希望保留对技术的热爱与追求。 学习Net...
Problem Implement the following operations of a queue using stacks. push(x) -- Push element x to the back of queue. pop() -- Removes the element from in front of queue. peek() -- Get the front el...
Problem Given an integer, write a function to determine if it is a power of two. Example 1: Input: 1 Output: true Explanation: 2^0 = 1 Example 2: Input: 16 Output: true Explanation: 2^4 = 16...
Problem Invert a binary tree. Example: Input: 4 / \ 2 7 / \ / \ 1 3 6 9 Output: 4 / \ 7 2 / \ / \ 9 6 3 1 对树进行完全的左右节点交换 Python3 # Invert a b...
Problem Implement the following operations of a stack using queues. push(x) – Push element x onto stack. pop() – Removes the element on top of the stack. top() – Get the top element. empty() – Re...
Problem Given an array of integers and an integer k, find out whether there are two distinct indices i and j in the array such that nums[i] = nums[j] and the absolute difference between i and j is...