-
auto
2019-08-30 09:29:51
python
1936°
20
# -*- coding: utf-8 -*- import urllib2 # http发送报文 def httpsend(url, bw): req = ...
-
auto
2019-08-30 09:29:51
python
1632°
20
导读:如果你想学Python,或者你刚开始学习Python,那么你可能会问:“我能用Python做什么?”这个问题不好...
-
auto
2019-08-30 09:29:51
python
1874°
20
Python struct模块 Python struct模块 用处struct模块中的函数格式化字符串 对齐方式格式符 code使用示例...
-
auto
2019-08-30 09:29:51
python
1930°
20
import time import decimal # text decimal_sum print("decimal:") start =time.time() sum = decimal....
-
auto
2019-08-30 09:29:51
python
1911°
20
对str类型数据进行split操作如下: >>> s = 'abc\ndef' >>> s.split('\n') ...
-
auto
2019-08-30 09:29:51
python
1749°
20
# _*_ encoding:utf-8 _*_ """ 最大堆 """ class MaxHeap(object): # def __init__(self): # self.data = ...
-
auto
2019-08-30 09:29:51
python
1964°
20
from websocket import create_connection ws = create_connection("ws://127.0.0.1:9002") ws.send(...
-
auto
2019-08-30 09:29:51
python
1902°
20
1.python的注释规范 python 分为 单行注释,多行注释以及特殊注释 ... 3、告诉LINUX/UNIX去找到python的翻译
-
auto
2019-08-30 08:40:35
python
1493°
20
可以用pip list 或者用help('modules')
-
auto
2019-08-30 08:40:35
python
2077°
20
以下程序 使用python实现 Voronoi图from PIL import Image import random import math def generate_...
-
auto
2019-08-30 08:40:35
python
1644°
20
针对数组的切片操作
-
auto
2019-08-30 08:40:35
python
1386°
20
>>> b = 3 - 5j >>> a (2+4j) >>> b (3-5j) >>> 对应的实部、虚部和共轭复数可以很容易的获取。就像下...
-
auto
2019-08-30 08:40:35
python
1786°
20
import os os.makedirs('./image/', exist_ok=True) IMAGE_URL = ...urllib_download(): from urllib.request...
-
auto
2019-08-30 08:40:35
python
1605°
20
短接串口的2、3脚,创建一个文本,如: [python] view plaincopyprint? import serial
-
auto
2019-08-30 08:40:35
python
2462°
20
####功能:将list对象N等分 def div_list(ls,n): if not isinstance(ls,list) or not ...
-
auto
2019-08-30 08:40:35
python
1399°
20
最近在研究WebShell,打算写一个Python版的WebShell,使用的是cgi, Apache配置文件http.conf需做如下: ...
-
auto
2019-08-30 08:40:35
python
2805°
20
今天看到group()方法,有点疑惑,自己动手了解了一下,
-
auto
2019-08-30 08:40:35
python
1558°
20
1.格式 try: 表达式 1(如果表达式,可以成功执行,则执行,跳到 finally 语句) except ExpectErrorType, ...
-
auto
2019-08-30 08:39:34
python
1645°
20
本系列的内容,参考了电子工业出版社出版的《ZeroMQ云时代极速消息通信库》这本书的内容编排,如果你想阅读...
-
auto
2019-08-30 08:39:34
python
1571°
20
获取python对象占用空间的大小