Python教程
Python教程:包含了所有代写案例以及部分答案
-
def flatten(nested_list): for value in nested_list: if isinstance(value, list): for nested_value in flatten(value): yield nested_value else: yield value def some(nested_list, fn): for value in flatten(nested_list): if fn(value): return value return N … 继续阅读“python 深度搜索+命令模式 解数独”
:
-
# -*- coding: utf-8 -*- import sys reload(sys) import datetime import time sys.setdefaultencoding("utf-8") from ghost import Ghost ghost = Ghost(wait_timeout=20) url="http://weixin.sogou.com/gzh?openid=oIWsFt8JDv7xubXz5E3U41T0eFbk" … 继续阅读“python 微信爬虫”
:
-
很多场景为了不阻塞,都需要异步回调机制。这是一个简单的例子。 python的多线程异步常用到queue和threading模块 #!/usr/bin/env python # -*- coding: UTF-8 -*- import logging import queue import threading def func_a(a, b): return a + b def func_b(): pass def func_c(a, b, c): return a, b, c # 异步任务队列 … 继续阅读“Python多线程异步任务队列(实例)”
:
-
第一种方法: # coding:utf-8 """ 黄哥python远程视频培训班 https://github.com/pythonpeixun/article/blob/master/index.md 黄哥python培训试看视频播放地址 https://github.com/pythonpeixun/article/blob/master/python_shiping.md 咨询qq:1465376564 """ lst = [1 … 继续阅读“python如何将数组分成几个区间,取每个区间的最大值存到另一个数组里”
:
-
from PIL import Image import qrcode #最小尺寸 1 会生成 21 * 21 的二维码,version 每增加 1,生成的二维码就会添加 4 尺寸 #参数 error_correction 指定二维码的容错系数,分别有以下4个系数: #ERROR_CORRECT_L: 7%的字码可被容错 #ERROR_CORRECT_M: 15%的字码可被容错 #ERROR_CORRECT_Q: 25%的字码可被容错 #ERROR_CORRECT_H: 30%的字码可被容错 # … 继续阅读“Python3使用qrcode生成二维码”
:
-
from PIL import Image, ImageFilter, ImageDraw, ImageFont, ImageEnhance, ImageFilter image1 = Image.open(‘C:/Users/hengli/Desktop/1.jpg’) image2 = Image.open(‘C:/Users/hengli/Desktop/2.jpg’) def 图片大小(image): w, h = image.size #获得图片的大小(分辨率) return w, h … 继续阅读“Python3.4 PIL的使用”
:
-
代码“`python import struct import ctypes def test_struct(buf, offset): return struct.unpack_from(“I”, buf, offset)[0] def test_ctypes(buf, offset): return ctypes.c_uint32.from_buffer(buf, offset).value def test_multi(buf, offset): ret … 继续阅读“Python将byte数组转换为int”
:
-
# -*- coding: utf-8 -*- from bs4 import BeautifulSoup import urllib2 import datetime import time import PyRSS2Gen from email.Utils import formatdate import re import sys import os reload(sys) sys.setdefaultencoding(‘utf-8’) class RssSpider(): def __i … 继续阅读“python抓取osc最新博客生成Rss”
:
-
#本代码获取百度乐彩网站上的信息,只获取最近100期的双色球 #http://trend.lecai.com/ssq/redBaseTrend.action?recentPhase=100&onlyBody=false&phaseOrder=up&coldHotOrder=number import urllib.request from bs4 import BeautifulSoup import random ere_hitlist = [] … 继续阅读“python 爬前100期双色球中奖号码,从中随机出下一期中奖号码”
: