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
1.列表,[ ],删除最后一个元素pop,添加到末尾Append,有序的 代码: colors=["purple", "orange", "green"]guess=input("Guess a color:")if guess in colors: print("You guessed corre ...
分类:
其他好文 时间:
2020-05-31 00:36:57
阅读次数:
69
import turtle turtle.setup(650, 350, 200, 200) turtle.penup() turtle.fd(-250) turtle.pendown() turtle.pensize(25) turtle.pencolor("purple") turtle.set ...
分类:
其他好文 时间:
2020-05-25 19:23:30
阅读次数:
71
<template> <div class="about"> <h1>about page</h1> <el-row> <el-col :span="2"><div class="grid-content bg-purple">11</div></el-col> <el-col :span="22" ...
分类:
其他好文 时间:
2020-05-22 00:07:34
阅读次数:
49
(点击图片进入关卡) 为元素添加边框,能够帮助与其他元素分隔开来。 简介 border 用于在元素周围放置一个漂亮的边框。 div { border: 3px double purple; } 默认代码 <!-- 有时间深入研究更多CSS属性。 --> <!-- 可以添加边框将元素包围起来。 --> ...
分类:
Web程序 时间:
2020-05-21 19:25:30
阅读次数:
95
$\color{purple}{表格是个很重要的东西,让我们来美化一下吧!}$ DP 图论 字符串 线性DP 最短路 KMP算法 区间DP 拓扑排序 tire树 树型DP tarjan算法 序列自动机 状压DP 匈牙利算法 AC自动机 上面就是最朴素的表格了。(美化的以后更新) ...
分类:
Web程序 时间:
2020-04-25 23:28:24
阅读次数:
99
$\color{Red}{首先设计一下静止的a标签}$ $\color{Purple}{然后设计一下鼠标悬停在超链接上的变化}$ 效果图 还可以设置$a:visited,a:active,$这里不再累赘了 ...
分类:
Web程序 时间:
2020-04-25 20:48:13
阅读次数:
120
1 <!-- white 纯白 255,255,255 #FFFFFF 2 3 Pink 浅粉红 255,182,193 #FFB6C1 4 5 purple 紫色 128,0,128 #800080 6 7 blue 纯蓝 0,0,255 #0000FF 8 9 skyBlue 天蓝色 135,2 ...
分类:
其他好文 时间:
2020-04-10 22:49:45
阅读次数:
141
import turtle as t t.setup(650,500,250,250) t.penup() t.fd(150) t.pendown() t.pensize(15) t.color("purple") t.fd(100) t.seth(-120) t.fd(100) t.seth(12 ...
分类:
其他好文 时间:
2020-03-15 11:37:41
阅读次数:
46
1 import turtle 2 turtle.pensize(10) 3 turtle.color('purple','pink') 4 turtle.begin_fill() 5 6 turtle.forward(100) 7 turtle.right(120) 8 turtle.forwar ...
分类:
其他好文 时间:
2020-03-11 15:33:40
阅读次数:
61