原文:在VSCode中用正则匹配文件每行的开头在复制文件的时候经常把文件前面的行号什么的也给复制进来,就百度了下说用下面这个正则: (?:^|\n)\w+ 但是这个正则把上一行的结尾的换行也给匹配上了,如果替换为‘’,就会让所有代码成一行,所以在前面加了一个^开头,就可以使用了 ^(?:^|\n)\... ...
分类:
其他好文 时间:
2020-03-16 14:55:47
阅读次数:
50
五角星 from turtle import * fillcolor('red') hideturtle() begin_fill() while True: forward(200) right(144) if abs(pos())<1: break end_fill() 六角形 import t ...
分类:
其他好文 时间:
2020-03-15 19:12:22
阅读次数:
82
import turtle turtle.pensize(5) turtle.pencolor("yellow") turtle.fillcolor("red") turtle.begin_fill() for i in range(0,5): turtle.forward(100) turtle. ...
分类:
其他好文 时间:
2020-03-15 13:07:42
阅读次数:
80
import turtle as t t.color("black","red") t.begin_fill() for i in range(5): t.fd(100) t.rt(144) t.end_fill() t.done ...
分类:
其他好文 时间:
2020-03-15 11:53:18
阅读次数:
62
import turtle turtle.pensize(1) turtle.pencolor("black") #画笔黑色 turtle.fillcolor("red") #内部填充红色 #绘制五角星# turtle.begin_fill() for _ in range(5): #重复执行5次 ...
分类:
其他好文 时间:
2020-03-15 11:19:38
阅读次数:
47
恢复内容开始 黄边五角星 import turtle turtle.pensize(5) turtle.pencolor("yellow") turtle.fillcolor("red") turtle.begin_fill() for i in range(6): turtle.forward(1 ...
分类:
编程语言 时间:
2020-03-14 23:35:22
阅读次数:
171
1. 所需组建 Python Selenium for python Pycharm 2. 环境搭建 1) 下载Python 3.x最新版本 到 https://www.python.org/downloads/, 下载3.x最新版本,如图 下载完后直接,双击开始安装,记得在勾选组建的时候,需要勾选 ...
分类:
编程语言 时间:
2020-03-14 23:34:46
阅读次数:
84
1.五角星 import turtle turtle.pensize(5) turtle.pencolor("yellow") turtle.left(72) turtle.fillcolor("red") turtle.begin_fill() for _ in range(5): turtle. ...
分类:
其他好文 时间:
2020-03-14 22:18:33
阅读次数:
77
import turtle turtle.pensize(4)turtle.pencolor("black") turtle.fillcolor("red")turtle.begin_fill() for _ in range(5): turtle.forward(150) turtle.right ...
分类:
编程语言 时间:
2020-03-14 22:06:21
阅读次数:
70
import turtle turtle.setup(650,350,200,200)turtle.penup()turtle.pensize(1)turtle.pencolor("red")turtle.fillcolor("green")turtle.begin_fill()turtle.set ...
分类:
其他好文 时间:
2020-03-14 21:47:58
阅读次数:
68