码迷,mamicode.com
首页 >  
搜索关键字:end    ( 30778个结果
条件、循环、函数定义 练习
1. import turtleturtle.color('yellow')turtle.fillcolor('yellow')turtle.begin_fill()for i in range(5): turtle.forward(100) turtle.right(144)turtle.end_ ...
分类:其他好文   时间:2017-09-12 23:08:12    阅读次数:240
条件、循环、函数定义 练习
1.画五角星 import turtlefor i in range(5): turtle.forward(100) turtle.right(144) 2.画同心圆 import turtle for i in range(5): turtle.circle((i+1)*10) turtle.up ...
分类:其他好文   时间:2017-09-12 22:06:56    阅读次数:202
Python模块调用时的路径查找
import sys import os base_dir = os.path.dirname(os.path.abspath(__file__)) sys.path.append(base_dir) os.path.abspath(__file__) 确认*.py的绝对路径 os.path.dir... ...
分类:编程语言   时间:2017-09-12 22:01:24    阅读次数:186
条件、循环、函数定义练习
1、 from turtle import * for i in range(5) forward(200) right(144) 2、 from turtle import *for i in range(5): circle(20*i) up() goto(0,-20*i) down() wri ...
分类:其他好文   时间:2017-09-12 21:59:19    阅读次数:140
poj2352
Astronomers often examine star maps where stars are represented by points on a plane and each star has Cartesian coordinates. Let the level of a star ...
分类:其他好文   时间:2017-09-12 21:22:36    阅读次数:207
turtle库基础练习
1、画一组同切圆 2、画一组同心圆 3、画一个五角星 4、画一个黄色实心五角星 5、画左上角的五颗五角星 ...
分类:其他好文   时间:2017-09-12 21:21:43    阅读次数:257
WebDriver API 大全
访问某网页地址:driver.get(url) 或 driver.navigate().to(url) 访问上一个访问的网页(模拟单击浏览器的后退按钮)driver.navigate().back() 从上次访问的网页前进到下一个网页(模拟单击浏览器的前进功能)driver.navigate().f ...
分类:Windows程序   时间:2017-09-12 20:57:45    阅读次数:204
chapter 17
Chapter 17 Input,Output,and Files ## An Overview of C++ Input and Output# # Streams and Buffers An input stream needs two connections, one at end. The ...
分类:其他好文   时间:2017-09-12 20:53:04    阅读次数:190
turtle库基础练习
1.画一个同切圆 2.画一个同心圆 3.画一个五角星 4.画一个黄色实心五角星 5.画左上角的五颗五角星 ...
分类:其他好文   时间:2017-09-12 20:42:41    阅读次数:138
SQL2008R2的 遍历所有表更新统计信息 和 索引重建
【2.以下是更新统计信息】 【1.以下是索引重建】 摘自: http://www.cnblogs.com/shijun/archive/2012/04/21/2461737.html 项目升级数据库由SQL2000升级到2008R2,今天对数据库表进行碎片扫描,发现有些表碎片较大,于是决定重建索引, ...
分类:数据库   时间:2017-09-12 19:54:26    阅读次数:168
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!