import turtle turtle.color("purple","yellow") turtle.speed(1) turtle.fd(100) turtle.right(60) turtle.fd(100) turtle.right(60) turtle.fd(100) turtle.ri ...
分类:
编程语言 时间:
2021-05-24 12:48:24
阅读次数:
0
import turtle import math #先定义4个坐标 x1,y1=100,100 x2,y2=100,-100 x3,y3=-100,-100 x4,y4=-100,100 #然后画折线 turtle.penup() turtle.goto(x1,y1) turtle.pendown ...
分类:
编程语言 时间:
2021-05-24 12:46:21
阅读次数:
0
比较运算符: == != < > <= >= 逻辑运算符 或与非 or and not x or y : x为true,则不计算y的值,直接返回ture x为false,则返回y的值 x and y: x为ture,则返回y的值, x为false,则不计算y,直接返回false x not y: x ...
分类:
编程语言 时间:
2021-05-24 12:45:55
阅读次数:
0
centos编译安装Python时,提示“Warning: File `Makefile.pre.in' has modification time 19209898 s in the future”先说结论:系统时间不对。如果遇到编译make时一直checking,那不用等了,它停不下来。实际上m... ...
分类:
系统相关 时间:
2021-05-24 12:34:55
阅读次数:
0
Pymysql 一、模块商城pip介绍 pip是个可执行文件,该命令可帮助我们管理第三方模块(将该文件下载到本地,并解压到指定目录) python2,默认无pip命令;python3,默认下载pip命令(但需手动添加到环境变量中) pip相当于统一管理第三方模块的模块商城(pypi.python.o ...
分类:
数据库 时间:
2021-05-24 12:10:38
阅读次数:
0
由于多线程爬取数据比单线程的效率要高,尤其对于爬取数据量大的情况,效果更好,所以这次采用多线程进行爬取。具体代码和流程如下: import math import re from concurrent.futures import ThreadPoolExecutor import requests ...
分类:
编程语言 时间:
2021-05-24 12:04:44
阅读次数:
0
1.判断目录是否存在 在Python中,有时需要判断给定的目录是否存在,这时可以使用os.path模块提供的exists()函数实现。 os.path.exists(path) 其中,path为要判断的目录,可以是绝对路径,也可以采用相对路径。如果给定的路径存在,则返回true,否则返回false。 ...
分类:
编程语言 时间:
2021-05-24 12:03:48
阅读次数:
0
代码: 1 import time 2 import traceback 3 import requests 4 from lxml import etree 5 import re 6 from bs4 import BeautifulSoup 7 from lxml.html.diff impo ...
分类:
数据库 时间:
2021-05-24 12:00:17
阅读次数:
0
关键字参数 关键字参数允许我们在传入必选参数外,还可以接受关键字参数kw: def person(name, age, **kw) prit('name:', name, 'age:', age, 'other', kw) 这里的name, age是必须的,kw可选,意味着第三个参数开始我们可以传入 ...
分类:
编程语言 时间:
2021-05-24 11:11:59
阅读次数:
0
这篇文章主要是对python中的数据进行认识,对于很多初学者来讲,其实数据的认识是最重要的,也是最容易出错的。本文结合数据与内存形态讲解python中的数据,内容包括: 引用与对象 可变数据类型与不可变数据类型 引用传递与值传递 深拷贝与浅拷贝 (id函数:你可以通过python的内置函数 id() ...
分类:
编程语言 时间:
2021-05-24 11:08:14
阅读次数:
0