Python教程
Python教程:包含了所有代写案例以及部分答案
-
#coding=UTF-8 import poplib import re import string import time from subprocess import Popen from subprocess import PIPE import win32api import win32con ####第一部分:收取邮件,获取最新一封的标题,使用poplib模块#### host=’pop3.163.com’ #这里以163邮箱举例 username=’邮箱账号’ password=’ … 继续阅读“python 利用手机远程控制电脑干坏事”
:
-
本代码演示了python的urllib2模块如何使用代理,以及需要登录验证的proxy # The proxy address and port: proxy_info = { ‘host’ : ‘proxy.myisp.com’, ‘port’ : 3128 } # We create a handler for the proxy proxy_support = urllib2.ProxyHandler({"http" : "http://%(host)s:%( … 继续阅读“python urllib2使用代理服务器”
:
-
def prime(b): t=b/2 for i in range(2,t+1): if b%i==0: break else: return b if __name__=="__main__": a=input(‘please input the first number:’) b=input(‘please input the next number:’) list=[] for i in range(a,b+1): if prime(i): list.append(p … 继续阅读“python 找出a-b之间的质数”
:
-
pil功能强大,convert方法可以轻易的将图片转换,下面的代码可以将图片转换成黑白效果 from PIL import Image image_file = Image.open("convert_image.png") # open colour image image_file = image_file.convert(‘1’) # convert image to black and white image_file.save(‘result.png’) 标签:py … 继续阅读“python通过pil将图片转换成黑白效果”
:
-
下面的python代码演示线程锁的用法和线程同步 #!/usr/bin/python import threading import time class myThread (threading.Thread): def __init__(self, threadID, name, counter): threading.Thread.__init__(self) self.threadID = threadID self.name = name self.counter = counter d … 继续阅读“python线程同步”
:
-
#Filename: DBcon.py import sqlite3 import time conn=sqlite3.connect(r’D:\Exercise\Python\DB\example.db’) c=conn.cursor() c.execute("Create table if not exists stocks (date text, trans text, symbol text, qty real, price real)") flag=raw_inpu … 继续阅读“python使用sqlite3的简单代码”
:
-
from PIL import Image, ImageFilter, ImageOps img = Image.open(‘C:\\Users\\hengli\\Pictures\\lovewallpaper\\214926-106.jpg’) def dodge(a, b, alpha): return min(int(a*255/(256-b*alpha)), 255) def draw(img, blur=25, alpha=1.0): img1 = img.convert(‘L’) # … 继续阅读“Python3.4图片转换素描”
:
-
此段代码可以利用剪切板,完成自动复制粘贴等功能。 import sys import os.path import win32clipboard as w import win32con import win32api def getText():#读取剪切板 w.OpenClipboard() d = w.GetClipboardData(win32con.CF_TEXT) w.CloseClipboard() return d def setText(aString):#写入剪切板 w.Op … 继续阅读“Python使用剪切板代码”
:
-
import re pattern=re.compile(r’\| (\d+) \| (\d+) \|’) numset=set() all=”’ | 29266795 | 533 | | 29370116 | 533 | | 29467495 | 533 | | 29500404 | 533 | | 29500622 | 533 | | 29515964 | 530 | | 29516015 | 530 | | 29520954 | 530 | | 29520960 | 530 | | 29 … 继续阅读“python 利用正则表达式匹配并截取指定子串并去重”
: