- 博客(34)
- 收藏
- 关注
转载 【Python】tesserocr的Path错误
试过网上大部分方法,都不行。之后观察了别人的图片发现,RuntimeError: Failed to init API, possibly an invalid tessdata path: 是根据python的路径产生的。使用pycharm的都知道,Run框中最上面是路径。我的python路径为C:\Users\eternal\AppData\Local\Programs\...
2018-07-20 15:42:00 121
转载 【Python套接字】socket编程
1.客户端import sockets = socket.socket(socket.AF_INET,socket.SOCK_STREAM) #建立TCP连接s.connect(('192.168.1.109',1111)) #连接服务器,需要服务器的地址与端口print('这里是客户端!')while True: t = input() ...
2018-05-23 13:31:00 98
转载 【Python数据】懒人修仙传数值
#最近的游戏都已经高大上了!#数据都已经加密成这样子了,我在贴吧看到了大神的操作,然后我再把它总结了出来#设计一个能自由切换的程序#------------------------------------x = eval(input("输入整数:"))shang = int((x) //256) #第一位256循环一次yu = (x) % 256 ...
2018-05-23 13:00:00 2933
转载 【Python画画】失败案例总结
攻略一网站:https://blog.csdn.net/pipisorry/article/details/465649671.spy++找窗口句柄2.游戏照片提取3.俩图 切成好多方块 比较 颜色直方图 差异4.标记不同from ctypes import*import os,timeimport pyautogui as pagimport win32conimp...
2018-05-12 07:52:00 135
转载 【Python画画】.ui文件转.py文件
1.下载安装pyside2.pyside-uic *.ui -o *.py转载于:https://www.cnblogs.com/naraka/p/9015785.html
2018-05-09 17:57:00 174
转载 【Python截图】截图处理
from ctypes import*import os,timeimport pyautogui as pagimport win32conimport win32guifrom PIL import ImageGrab#----------------------------hwnd = win32gui.FindWindow(32770,"大家来找茬")if not hwnd: ...
2018-05-07 15:30:00 198
转载 【想法】想做一个辅助工具
比如找茬辅助程序先设计一下路线吧1.先固定两张图片的坐标 左边图的左上角与右下角的坐标值 右边图的左上角与右下角的坐标值这就锁定了两张图但是找茬会有反辅助的方法 比如不会使两张图完美对应,会有一些偏差,但是如何解决有偏差呢? 这个我再想会儿2.从左边图获取每一个像素点的R,G,B的分散数据与右边图比较但是我之前弄的时候发现,右边图与左边...
2018-05-06 14:22:00 112
转载 【Python爬虫】从html里爬取中国大学排名
from bs4 import BeautifulSoupimport requestsimport bs4 #bs4.element.Tag时用的上#获取网页页面HTMLdef getHTMLText(url): try: r = requests.request("get", url,timeout=30) r.raise_for_stat...
2018-05-06 14:08:00 163
转载 【Python图像】Pillow库
1.下载Pillow库pip install pillow2.调用Imagefrom PIL import Image3.打开图片im = Image.open("路径")print(im.format,' ',im.size,' ',im.mode)#图像格式,图像大小,图像模式(RGB)print(im.rotate(-45).show())#秀顺...
2018-05-05 23:22:00 82
转载 【Python爬虫】beautifulsoup4库的安装与调用
1.CMD时管理员权限2.from bs4 import BeautifulSoup调用转载于:https://www.cnblogs.com/naraka/p/8995083.html
2018-05-05 16:27:00 159
转载 【Python爬虫】已知jpg文件url-下载图片
import requestspath = "D:/abc/123.jpg" #设置图片文件路径,前提是必须要有abc这个文件夹url = 'https://car3.autoimg.cn/cardfs/product/g24/M09/2C/2A/1024x0_1_q87_autohomecar__ChcCL1rd66CAbLHHAAvLMUvSlTU844.jpg'r = reques...
2018-05-05 14:05:00 447
转载 【Python爬虫】测试
例1:import requests #爬虫专用库r = requests.get("http://www.baidu.com") #从requests.get()中返回过来的Response对象赋予到rif r.status_code == 200: #测试是否成功 print("ok")r.encoding = "UTF-8" #把编码格式换成UTF-...
2018-05-05 13:43:00 122
转载 【Python爬虫】Requests库的安装
1.按照普通的pip不能行,说find不能有位小杰控的大牛说了一句:换一个国内的更新源吧,pipinstallrequests -ihttp://pypi.douban.com/simple--trusted-host=pypi.douban.com然后就好了!转载于:https://www.cnblogs.com/naraka/p/8994173.html...
2018-05-05 11:26:00 164
转载 【Python】以模块化做比赛模拟
import random #随机#主函数-打印基本信息-获取数据-判断赢场数-打印赢场def main(): printIntro() probA, probB, n = getInputs() winsA, winsB = simNGames(n, probA, probB) printSummary(winsA, winsB)def printIntro...
2018-05-05 09:02:00 150
转载 【真随笔】未来出路,在哪里?
我是2018年非计算机专业,要毕业的-----毕业生 学校就不说了从大四才发现,我喜欢的是计算机科学与技术,主要想成为黑客,无所不能的黑客。但是最近几天从学习中发现,我是多么的废物,多么的愚蠢,别的天才一看就会,一看就背的东西,对我来说如天书一般。我在想,到底该怎么办呢?毕业了,没有钱财来源,普通的公司不要我这种非专业对口的毕业生,而且学校也不够高大上。心中充满了自...
2018-05-04 21:17:00 69
转载 【Python】以词云分析文章
import wordcloud,jiebafrom scipy.misc import imread #安装scipy库才可以mk = imread('love.jpg') #选择形状图片#对象的创建与参数设置w = wordcloud.WordCloud(mask=mk,width=1000,height=700,font_path='msyh.ttc',background_...
2018-05-04 18:39:00 172
转载 【Python】安装wordcloud库
1.pip install wordcloud失败报错Microsoft Visual C++ 14.0 is required2.直接想下载Microsoft Visual C++ 14.0找了半天没找着-继续找攻略找到个靠谱的#攻略地址:https://blog.csdn.net/m0_38015368/article/details/80182477本来是看不懂...
2018-05-04 14:04:00 79
转载 【Python】txt文件读取绘画
import turtle as t #绘画库t.title('自动轨迹绘制') #标题t.setup(800,600,0,0)t.pencolor('red')t.pensize(5)#数据读取datals = [] #数据列表,以便提取f = open('C:/Users/eternal/data.txt') #data.txt打开后命名文件句柄名为f,默认为只读for ...
2018-05-04 12:42:00 282
转载 【Python】三国演义词频统计
import jiebatxt = open('C:/Users/eternal/Desktop/threekingdoms.txt','r',encoding='UTF-8').read() #提前修改txt文件编码格式utf-8excludes = {'将军','却说','荆州','二人','不可','不能','如此'} #错误的名字words = jieba.lcut(txt)...
2018-05-03 14:22:00 1240
转载 【Python】哈姆雷特字数统计
def getText(): #赋予txt哈姆雷特小说-全英文小写-全符号变空格-返回txt txt = open('C:/Users/eternal/Desktop/hamlet.txt','r').read() #路径要选好 txt = txt.lower() for ch in '!"#$%&()*+,-./:;<=>...
2018-05-03 13:46:00 1178
转载 【Python】统计
x = 0 #循环变量ls = [] #创建列表while x == 0: shuru = input() if shuru == '': x = 1 #中断while else: ls.append(eval(shuru)) #增加元素he = 0 #和fangchahe = 0 #方差zhongweishu = 0 #中位...
2018-05-02 22:33:00 178
转载 【Python】koch雪花
import turtledef koch(size,n): if n == 0: turtle.fd(size) #如果n=0画直线 else: for angle in [0,60,-120,60]: #n>0时直线不是直线,变成了-/\-这种形状 turtle.left(angle) ...
2018-05-02 09:01:00 419
转载 【Python】汉诺塔问题
count = 0def hannuota(n,src,dst,mid): #n是圆盘数,src是起始,dst是目标,mid是过度 global count if n == 1: print('{}:{}->{}'.format(1,src,dst)) #当圆盘是1时,从起始柱子移到目标柱子 count += 1 else:...
2018-04-29 13:41:00 119
转载 【Python】七个数码管年月日
import turtle #画画库import time #时间库def drawGap(): #每个数码管距离,弄成像数码管 turtle.penup() turtle.fd(5)def drawLine(draw): #单个数码管 drawGap() turtle.pendown() if draw else turtle.penup(...
2018-04-28 20:43:00 216
转载 【Python】圆周率计算
import randomi = 0 #循环变量count1 = 0 #圆内点count2 = 0 #外while i < 10000000: #循环次数 xzuobiao = random.random() #随机x坐标,0.0-1.0 yzuobiao = random.random() #y if pow(xzuobiao,2)+po...
2018-04-21 08:09:00 303
转载 【Python】input()得到Str后对里面的数据进行计算
a = input()if a[0:3] == 'RMB': renminbi = eval(a[3:]) fff = renminbi /6.78 print('USD{:.2f}'.format(fff))elif a[0:3] == 'USD': meiguobi =eval(a[3:]) ccc = meiguobi * 6.78 print(...
2018-04-19 23:06:00 538
转载 【Python】】对于input函数直接对两个字符串赋值的试验
1、第一次试验s , t = input()print('{0},{1}'.format(s,t))#对于上述代码,输入1,2会发生错误#发生ValueError: too many values to unpack (expected 2)这种错误2、第二次试验s , t = eval(input())print('{0},{1}'.format(s,t))...
2018-04-16 12:19:00 609
转载 【Python】BMI国内测量
shengao = eval(input('请输入以米为单位的身高(例:1.75):'))tizhong = eval(input('请输入以公斤为单位的体重(例:60):'))BMI = tizhong / (shengao**2)if BMI<18.5: print('BMI指数为{:.2f},偏瘦!'.format(BMI))elif 18.5<=BMI<2...
2018-04-16 12:01:00 200
转载 【Python】.py文件转.exe文件 (转载并减掉很多)
首先下载pyinstaller下载地址:http://www.pyinstaller.org/downloads.html我的是windows操作系统,所以我选择了支持3.6版本的zip格式文件下载解压到一个盘里然后进入CMD,进入刚刚解压的文件夹里,然后输入python setup.py install安装成功后,把想转换的.py文件放入到刚刚解压的文件夹里,就是p...
2018-04-15 14:51:00 92
转载 【Python】wo ai ni python代码画画
import turtle #引入代码块love = turtlelove.setup(1000,600,100,100)love.penup()love.fd(-400)love.seth(90)love.fd(100)love.pendown()love.pensize(10)love.pencolor('red')for i in range(4): if i % 2 == ...
2018-04-14 20:16:00 105
转载 【汇编】基础试验7
assume cs:code,ss:stack,ds:datadata segment ;原始数据存放的地方 db '1975','1976','1977','1978','1979','1980','1981','1982' db '1983','1984','1985','1986','1987','1988','1989','1990' db '1991','1992','19...
2017-12-12 09:56:00 100
转载 【C】贪吃蛇
#include <stdio.h>#include <stdlib.h>#include <time.h>#include <windows.h>#include <conio.h>#define H 10#define L 20void map();void map_print();...
2017-11-24 12:26:00 61
转载 【C】进制转换器
#include <stdio.h>int power(int,int);int scale_first(int,int);int scale_double(int,int);int scale_all(int,int,int);int main(){ //给定一个 M 进制的数 x,实现对 x 向任意的一个非 M 进制的数的转换 int num,pow,answer; /...
2017-11-23 16:24:00 127
转载 【C】统计选票程序解析-书上例题
#include <stdio.h> //一般都有的头文件struct candidate //建立一个结构体,后面是名称 { char name[20]; //定义变量name,设置长度20 int count; //定义变量count } list[]={{"inv...
2017-11-05 10:21:00 339
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人