最新 最热

Python 函数 —— 定义,参数,参

数学定义:y = f(x), y是x的函数,x是自变量。 y = f(x0,x1,x2,...,xn)

2020-01-10
1

python及其依赖安装

Download Miniconda 2.7 64-bit Windows installer from Miniconda website. Install for all users and add Python to PATH (through installer).

2020-01-09
1

Python-day3作业-haprox

from collections import defaultdict,OrderedDict

2020-01-08
1

3COM SS3 4400系列交换机VL

除了基本的数据交换功能,VLAN是在配置交换机中碰到最多的。虽然SS3 4400仅是一个二层交换机系列,但它仍可以配置基于端口的VLAN。下面举两个例子来说明如何配置。...

2020-01-08
2

Python中的 optparse模块

python的内置模块中对于命令行的解析模块共两个getopt 和 optparse 。不过getopt过于简单,往往不能满足需求。此时可以使用optparse模块。这个模块相对于getopt更新,功能更强大。...

2020-01-08
1

python中set集合常用方法

#different_update():把集合set中和set2不一样的元素取出来并且更新到set里面

2020-01-07
1

python:__add__方法使用

#!/usr/bin/pythonclass Vector:   def __init__(self, a, b):      self.a = a      self.b = b   def __str__(self):      return 'Vector (%d, %d)' % (self.a,...

2020-01-07
0

python 命令行 解析模块 optp

python optparse命令解析模块:https://www.cnblogs.com/pping/p/3989098.html python optparse模块的简单用法:https://www.cnblogs.com/darkpig/p/5677153.html Parser for command li...

2020-01-06
1

python3_07.面向对象

面向对象程序设计的基本步骤: 1、根据功能、抽象业务对象。 2、构建独立的业务模块,利用封装、继承、多态等抽象业务需求。 3、编写程序。 4、以对象为单位输入参数、开展测试。global关键字用来在函数或其他局部作用域...

2020-01-06
1

python3学习之set集合

se.difference(se1)                 #se有,se1没有

2020-01-03
1