Python port scanner
Common ports:
portservice21The default is ftp port, which mainly depends on whether anonymous is supported or weak password can be used22The default is shh port23The default is telnet port25The default is smtp service53The default is DNS123NTP161,162,8161SNMP service (8161 SNMP opened by IBM)389ldap community80http service443https service512 ...
Added by dull1554 on Tue, 08 Feb 2022 06:27:59 +0200
Python tutorial - day01 - computer foundation and environment construction
day01 computer foundation and environment construction
Course objective: let everyone understand the basic knowledge of computer and complete the construction of Python environment.
Course summary:
Fundamentals of computerThe essence of programmingIntroduction to PythonConstruction of Python environment
1. Fundamentals of computer
1.1 basi ...
Added by Cogen on Tue, 08 Feb 2022 06:03:21 +0200
NetDevOps common database python actual combat - influxDB_grafana
summary:
What is a sequential database?
What is a time series database? The simplest definition is that the data format contains the data of Timestamp field, such as the temperature of a certain time environment, CPU utilization, etc. However, what data does not contain Timestamp? In fact, almost all data can be marked with a Timestamp field. ...
Added by stitchmedia on Tue, 08 Feb 2022 05:21:08 +0200
[OpenCV complete routine] 93 Histogram of noise model
[OpenCV complete routine] 93 Histogram of noise model
Welcome to pay attention "100 complete OpenCV routines" Series, continuously updating Welcome to pay attention "Python Xiaobai's OpenCV learning course" Series, continuously updating
2. Noise model
The noise source in digital image mainly comes from the process ...
Added by renu on Tue, 08 Feb 2022 03:38:49 +0200
Retail store order data analysis
catalogue
1, Project background
2, Data source
3, Ask questions
4, Understanding data
5, Data cleaning
1. Import data
2. Select subset
3. Delete duplicate values
4. Missing value processing
5. Standardized treatment
6. Abnormal value handling
6, Analysis content
1. Monthly analysis of consumption
2. User distribution analysis
...
Added by snizkorod on Tue, 08 Feb 2022 01:59:19 +0200
Python thread 14 has a bounded semaphore, which is a semaphore with a bottom line
Official Python column 51, students stop, don't miss this article starting from 0!
In the previous article, the academic committee proposed The idea of making current limiter based on Semaphore semaphore A simple implementation of sum current limiter.
The code is running and seems to have no errors.
However, careful readers will find that ...
Added by cottonbuds2005 on Mon, 07 Feb 2022 23:53:41 +0200
Overview and summary of python object-oriented considerations
catalogue
1, Inherit
2. The difference between inheriting the object class or not
3, Encapsulation
4, Class method, static method and attribute method
5, Polymorphism
6, Does python have private variables in a substantive sense?
1, Inherit
Different from java inheritance, python supports multiple inheritance. For example, the Person cl ...
Added by cmw on Mon, 07 Feb 2022 23:00:27 +0200
opencv color space type conversion (python)
Color space type conversion
Color model is an abstract mathematical model that describes the method of using a set of values (usually three or four values or color components) to represent color.
Common color spaces include:
GRAY color space (GRAY image)XYZ color spaceColor space crybHSV color spaceHLS color spaceCIELab color spaceCIELuv ...
Added by hhawkins on Mon, 07 Feb 2022 22:13:54 +0200
Introduction to algorithm -- quick sorting and merging sorting of divide and conquer idea
catalogue
divide and rule
Merge sort
python code implementation
Time complexity
Quick sort
python code implementation
Time complexity
divide and rule
divide and conquer (D & C) -- a famous recursive problem solving method.
The so-called "divide and conquer" is to divide a complex algorithm problem into equivalent sma ...
Added by wpsa on Mon, 07 Feb 2022 21:18:34 +0200
Python modules, packages, files, exceptions, higher-order functions
catalogue
1. Module
2. Package
3. Documents
4. Abnormal
5. Higher order function
1. Module
1.1 concept
Python module is a python file, which is written in py ends with Python object definitions and python statements. Modules can define functions, classes, variables, and can also contain executable code
1.2 import module
Mode 1: ...
Added by tbaink2000 on Mon, 07 Feb 2022 20:25:53 +0200