码迷,mamicode.com
首页 >  
搜索关键字:forward    ( 2749个结果
Servlet的forward与include方法
原文链接:http://www.yiidian.com/servlet/servlet dispatcher.html 使用Servlet请求转发与包含 RequestDispatcher接口提供了将请求转发到另一个资源的功能,该资源可能是Html,Servlet或Jsp。该接口还可以用于包含其他资 ...
分类:其他好文   时间:2020-03-15 09:30:08    阅读次数:44
python 绘图编程练习
恢复内容开始 黄边五角星 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
python.五角星
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
叠加三角形
from turtle import * pensize(4) pencolor("black") left(60) forward(200) right(120) forward(400) right(120) forward(400) right(120) forward(200) right( ...
分类:其他好文   时间:2020-03-14 12:47:28    阅读次数:63
五角星
import turtle turtle.pensize(4) turtle.pencolor("yellow") turtle.fillcolor("red") turtle.begin_fill() for _ in range(5): turtle.forward(200) turtle.ri ...
分类:其他好文   时间:2020-03-14 12:44:36    阅读次数:74
python
1.五角星 import turtle turtle.fillcolor("red") turtle.begin_fill() count = 1 while count <= 5: turtle.forward(100) turtle.right(144) count += 1 turtle.en ...
分类:编程语言   时间:2020-03-14 10:52:48    阅读次数:53
叠加等边三角形
import turtle turtle.right(60) turtle.forward(200) turtle.right(120) turtle.forward(200) turtle.right(120) turtle.forward(200) turtle.penup() turtle.f ...
分类:其他好文   时间:2020-03-14 01:24:32    阅读次数:62
五角星
import turtleimport time turtle.pensize(5)turtle.pencolor("red")turtle.fillcolor("red") turtle.begin_fill() for _ in range(5): turtle.forward(200) tur ...
分类:其他好文   时间:2020-03-14 00:46:18    阅读次数:48
国际象棋盘
import turtle turtle.speed(30) turtle.penup() off = True for y in range(-40, 30 + 1, 10): for x in range(-40, 30 + 1, 10): if off: turtle.goto(x, y) t ...
分类:其他好文   时间:2020-03-12 11:26:51    阅读次数:53
Python绘制六角形
import turtleturtle.penup()turtle.fd(-100)turtle.pendown()turtle.pensize(10)turtle.pencolor("green")turtle.left(30)turtle.forward(100)turtle.right(60) ...
分类:编程语言   时间:2020-03-11 15:44:15    阅读次数:129
2749条   上一页 1 ... 20 21 22 23 24 ... 275 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!