会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
魂~
博客园
首页
新随笔
联系
管理
订阅
上一页
1
2
3
4
5
6
···
14
下一页
2018年1月18日
python socket模块
摘要: 1 import socket # module 2 import threading 3 import time 4 5 """ 6 FUNCTIONS 7 create_connection(address, timeout=, source_address=None) 8 Connect to *address* and retu...
阅读全文
posted @ 2018-01-18 15:48 魂~
阅读(3082)
评论(0)
推荐(0)
编辑
2018年1月17日
python csv模块
摘要: 1 import csv # Comma Separated Value 2 3 # class Dialect 4 # delimiter = None # 分隔符 5 # doublequote = None # 元素是引用符,双倍的引用符。默认是true,如果改为false就需要设置分隔符,否则报错。 6 # ...
阅读全文
posted @ 2018-01-17 16:36 魂~
阅读(771)
评论(0)
推荐(0)
编辑
python pickle模块
摘要: 1 import pickle 2 3 # 在python中如果我们有一些对象需要持久性存储,并且不丢失我们这个对象的类型与数据, 4 # 我们则需要将这些对象进行序列化,序列化后,需要使用的时候,我们在回复为原来的数据, 5 # 序列化的这种过程,我们将其称为pickle(腌制) 6 7 8 # 1、dumps(object) python对象 --> ...
阅读全文
posted @ 2018-01-17 14:38 魂~
阅读(395)
评论(0)
推荐(1)
编辑
python struct模块
摘要: 1 import struct # a module 2 3 4 # Functions to convert between Python values and C structs. 5 # Python bytes objects are used to hold the data representing the C struct 6 # and also as form...
阅读全文
posted @ 2018-01-17 12:42 魂~
阅读(508)
评论(0)
推荐(0)
编辑
python threading模块
摘要: 1 # http://www.runoob.com/python3/python3-multithreading.html 2 # https://docs.python.org/3/library/threading.html 3 # http://yoyzhou.github.io/blog/2013/02/28/python-threads-synchronization-lo...
阅读全文
posted @ 2018-01-17 11:16 魂~
阅读(332)
评论(0)
推荐(0)
编辑
2018年1月16日
python queue模块
摘要: 1 import queue 2 # queue - A multi-producer, multi-consumer queue. 3 # ['Empty', Exception raised by Queue.get(block=0)/get_nowait() 4 # 'Full', Exception raised by Queue.put(block=0)/put_nowait...
阅读全文
posted @ 2018-01-16 14:56 魂~
阅读(318)
评论(0)
推荐(0)
编辑
python3 requests模块 基本操作
摘要: 1 import requests 2 import json 3 4 5 # 1、HTTP方法 6 requests.get('https://github.com/timeline.json') #GET请求 7 requests.post('http://httpbin.org/post') #POST请求 8 request...
阅读全文
posted @ 2018-01-16 11:52 魂~
阅读(562)
评论(0)
推荐(0)
编辑
python json模块
摘要: 1 import json 2 3 # json.dumps 用于将 Python 对象编码成 JSON 字符串。 4 print(json.dumps(['foo', {'bar': ('baz', None, 1.0, 2)}])) 5 print(type(json.dumps(['foo', {'bar': ('baz', None, 1.0, 2)}]))) 6 7 # json....
阅读全文
posted @ 2018-01-16 10:51 魂~
阅读(219)
评论(0)
推荐(0)
编辑
2018年1月15日
C语言回调函数
摘要: 1 #include 2 3 void PrintNum1(int n); 4 void PrintNum2(int n); 5 void ShowNum(int n, void (* ptr)(int)); 6 7 void PrintMessage1(); 8 void PrintMessage2(); 9 void PrintMessage3...
阅读全文
posted @ 2018-01-15 17:09 魂~
阅读(272)
评论(0)
推荐(0)
编辑
工厂方法模式
摘要: 1 class LeiFeng(object): 2 3 def Sweep(self): 4 print("扫地") 5 6 def Wash(self): 7 print("洗衣") 8 9 def BuyRice(self): 10 print("买米") 11 12 13 class IF...
阅读全文
posted @ 2018-01-15 17:02 魂~
阅读(156)
评论(0)
推荐(0)
编辑
上一页
1
2
3
4
5
6
···
14
下一页
公告