anaconda
文章平均质量分 69
离愁无语说
这个作者很懒,什么都没留下…
展开
-
python的opencv入门2
# -*- coding: utf-8 -*-"""Created on Tue Apr 20 15:30:26 2021@author: xf"""import cv2import numpy as npfrom PIL import Image, ImageDraw, ImageFont#图片名picture_name = "bizhi1.jpg"#图片路径path = r"F:\pypicture"# 生成图片img = cv2.imread(path + "\\".原创 2021-04-21 14:46:34 · 248 阅读 · 0 评论 -
python的OPENCV入门1
# -*- coding: utf-8 -*-"""Created on Tue Apr 20 16:40:53 2021两张图片重叠,加字@author: xf"""import cv2import osimport numpy as npfrom PIL import Image, ImageDraw, ImageFont#图片名picture_name1 = "bizhi1.jpg"picture_name2 = "11.png"picture_name3 = "img.原创 2021-04-21 14:45:42 · 190 阅读 · 0 评论 -
python 读取文件路径,获取文件名
# -*- coding: utf-8 -*-"""Created on Wed Apr 21 11:50:25 2021获取当前文件的路径获取当前文件的父目录获取当前目录的父目录的父目录与datetime1.py拼接获取路径下所有文件名@author: xf"""import osdef load_file(): # 全局变量 global father_path # 获取当前文件路径 current_path = os.path.abspath...原创 2021-04-21 14:43:07 · 1669 阅读 · 0 评论 -
python的csv的字典格式读写
文件存取的格式:r: 读取文件,若文件不存在则会报错w: 写入文件,若文件不存在则会先创建再写入,会覆盖原文件a : 写入文件,若文件不存在则会先创建再写入,但不会覆盖原文件,而是追加在文件末尾rb,wb:分别于r,w类似,但是用于读写二进制文件r+: 可读、可写,文件不存在也会报错,写操作时会覆盖w+: 可读,可写,文件不存在先创建,会覆盖a+: 可读、可写,文件不存在先创建,不会覆盖,追加在末尾import csv文件路径+文件名:file_path_csv ...原创 2020-07-20 19:41:44 · 1542 阅读 · 0 评论 -
python的numpy库的简单应用
学习过程的一些笔记,记录下来,以后要用方便查看import numpy as npdata = [[1,2,3],[4,5,6]]#使用列表生成一维数组int_array = np.array(data)#从2开始,到15结束,不包含15,步长为2创建一个数组array_x = np.arange(2,15,2, dtype = int) #创建了元素为0的三行两列数组array_32 = np.zeros([3,2], dtype = int)#随机创建一个两行两列的数组 a...原创 2020-07-19 11:09:17 · 225 阅读 · 0 评论 -
python的tkinter简单应用(二)(text文本框、button、listbox、entry)
环境:win10+anaconda开始学习python写的笔记,方便以后自己复习这是我写的python的tkinter简单应用(一)的地址https://blog.csdn.net/md55550/article/details/105620684感兴趣的可以看看import tkinter as tk# 创建窗口root = tk.Tk() #窗口...原创 2020-04-21 20:30:16 · 685 阅读 · 0 评论 -
python的tkinter简单应用(一)(lable、button、entry输入框)
环境:win10+anaconda开始学习python写的笔记,方便以后自己复习import tkinter as tk # 创建窗口root = tk.Tk() #窗口命名root.title("python") #指定窗口大小root.geometry('500x500')#窗口width不可变,height可变root.resiz...原创 2020-04-19 19:42:26 · 844 阅读 · 0 评论 -
python基础之时间模块(datetime 、time 、calendar)
import datetimeimport timeimport calendar#获取日期x = datetime.date.today()#获取当前时间y = datetime.datetime.now()#计时,开始时间time1 = time.time()today = datetime.date.today()x = 1000000000#格式化t = today...原创 2020-04-18 18:51:14 · 299 阅读 · 0 评论 -
python基础,内置的数学模块(math、cmath、decimal、fractions、 random)
import math#浮点数运算import cmath#复数运算import decimal#固定精度的数据import fractions#分数,实现一个有理数对象import random#随机数#三角函数x = math.sin(30/180*math.pi)#以a为底的x的对数a=2y = math.log(x,a)#x的a次方y = math.pow(x, a)...原创 2020-04-18 18:49:23 · 502 阅读 · 0 评论 -
anaconda使用及Pyinstaller打包.py成exe的傻瓜式教程
这个是转发的,刚刚学习python。原文链接:https://blog.csdn.net/weixin_42648229/article/details/101368335安装anaconda完成之后,不要傻乎乎的,费老鼻子劲装完不知道,有啥用(这是刚装完,我懵逼的状态)。会有如下几个软件可以使用,我个人比较倾向使用spyder这个软件,环境友好呀。Anaconda Navigtor ...转载 2020-04-18 18:46:06 · 3554 阅读 · 1 评论 -
python爬虫常用的两种方法
疫情在家无聊,没事在网上找视频学习python爬虫,教程还是很多的,但是杂乱无章。只能自己边学便总结,希望可以帮到大家。不多说了,直接上代码(里面写了详细的注释)#import作用是导入相应的模块(或者说是叫包)import requestsimport osfrom selenium import webdriver#url里面存了准备爬取的网址url = "https://...原创 2020-04-14 19:29:12 · 634 阅读 · 0 评论 -
python用pip安装selenium过程中的问题
python环境:anaconda+win10开始学习爬虫,但是在第一天就遇到了大问题,在命令行安装selenium一直提示下列SSL有问题:WARNING: pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available............N...原创 2020-04-12 14:43:15 · 3216 阅读 · 3 评论