码迷,mamicode.com
首页 >  
搜索关键字:forward    ( 2749个结果
五角星
import turtle turtle.forward(100) turtle.right(144) turtle.forward(100) turtle.right(144) turtle.forward(100) turtle.right(144) turtle.forward(100) tu... ...
分类:其他好文   时间:2018-05-09 22:42:39    阅读次数:166
循环星星
import turtle turtle.pencolor('red') turtle.fillcolor('yellow') turtle.begin_fill() while True: turtle.forward(100) turtle.right(25) if(abs(turtle.pos... ...
分类:其他好文   时间:2018-05-09 22:42:30    阅读次数:169
第五次作业
import turtle turtle.pencolor('yellow') turtle.fillcolor('green') turtle.begin_fill() while True: turtle.forward(100) turtle.right(155) if (abs(turtle... ...
分类:其他好文   时间:2018-05-09 22:41:03    阅读次数:123
for循环:用turtle画一颗五角星
import turtle turtle. pencolor('blue') turtle. fillcolor('purple') turtle.begin_fill() while True: turtle. forward(100) turtle. right (150) if abs(tur... ...
分类:其他好文   时间:2018-05-09 22:35:58    阅读次数:181
for循环:用turtle画一颗五角星
import turtle turtle.pencolor('pink') turtle.fillcolor('pink') turtle.begin_fill() for i in range(5): turtle.forward(100) turtle.right(144) turtle.end... ...
分类:其他好文   时间:2018-05-09 22:33:41    阅读次数:160
for循环:用turtle画一颗五角星
import turtle #画一个五角星 turtle.bgcolor('red') turtle.pencolor('yellow') turtle.fillcolor('yellow') turtle.begin_fill() for i in range(5): turtle.forward ...
分类:其他好文   时间:2018-05-09 21:33:09    阅读次数:186
for循环:用turtle画一颗五角
import turtle turtle.pencolor('blue') turtle.fillcolor('red') turtle.begin_fill() while True: turtle.forward(100) turtle.right(50) if abs(turtle.posit... ...
分类:其他好文   时间:2018-05-09 21:31:02    阅读次数:221
netfilter5表5链介绍
#maniptablescentos7之前只有4张表,centos7开始后5张表,加了security表filter是一个默认的表,包含三个内置的链:INPUT、FORWARD、OUTPUTINPUT是进来时需要经过的链,发现原ip是什么,发现可以ip禁用掉;FORWARD是判断目标地址是不是本机,如果不是本机,需要经过FORWARD链,把目标地址做个更改或转发;OUTPUT是在本机产生的一些包,
分类:Web程序   时间:2018-05-09 10:52:16    阅读次数:335
Linux process management
0) check bash running jobs by jobs 1) push bash job background by bg, push forward by fg 2) top top - 07:56:54 up 1:22, 2 users, load average: 0.00, 0 ...
分类:系统相关   时间:2018-05-08 22:27:56    阅读次数:284
请求转发与请求重定向
1,请求重定向:客户端行为,response.sendRedirect(),从本质上讲等同于两次请求,前一次的请求对象不会保持,地址栏的URL地址会改变。 2,请求转发:服务器行为,request.getRequsetDispatcher().forward(requset,response);是一 ...
分类:其他好文   时间:2018-05-07 19:37:21    阅读次数:135
2749条   上一页 1 ... 95 96 97 98 99 ... 275 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!