码迷,mamicode.com
首页 >  
搜索关键字:speed    ( 1368个结果
实验六
from turtle import * def square(size=50, rgb = 'orange'): pencolor(rgb) for i in range(4): fd(size) left(90) def main(): setup(800, 600) speed(0) for ...
分类:其他好文   时间:2021-06-18 20:05:27    阅读次数:0
实验六
from turtle import *def moveto(x,y): penup() goto(x,y) pendown()def main(): setup(800, 600) speed(0) for radius in range(20, 200, 20): moveto(0, -radi ...
分类:其他好文   时间:2021-06-18 20:00:08    阅读次数:0
实验6
from turtle import *def square(size=50): pencolor('orange') for i in range(4): fd(size) left(90)def main(): setup(800,600) speed(0) for i in range(10) ...
分类:其他好文   时间:2021-06-15 18:22:41    阅读次数:0
实验6
task 3 def square(size=50, rgb = 'orange'): pencolor(rgb) for i in range(4): fd(size) left(90) def main(): setup(800, 600) speed(0) for i in range(10) ...
分类:其他好文   时间:2021-06-15 18:11:32    阅读次数:0
实验六
from turtle import * def square(size=50, rbg='blue'): pencolor(rbg) for i in range(4): fd(size) left(90) setup(800,600) speed(0) for i in range(10): s ...
分类:其他好文   时间:2021-06-15 17:36:49    阅读次数:0
实验六
from turtle import * def square(size = 50, rgb = 'orange'): pencolor(rgb) for i in range(4): fd(size) left(90) def main(): setup(800, 600) speed(0) fo ...
分类:其他好文   时间:2021-06-13 09:19:11    阅读次数:0
How to identify the HBA cards/ports and WWN in Linux
There are several commands to determine the WWN of a Fibre Channel (FC) HBA and their status (online/offline). The post discusses few of the most comm ...
分类:系统相关   时间:2021-06-11 18:48:26    阅读次数:0
pygame之精灵对象和精灵组
1、创建精灵对象和精灵组 import random import pygame from pygame.locals import * class Player(pygame.sprite.Sprite): # 继承pygame.sprite.Sprite精灵对象 def __init__(sel ...
分类:其他好文   时间:2021-06-10 18:44:12    阅读次数:0
有哪些方法压缩PDF图片不失真
日常办公中我们经常会将纸质资料扫描成PDF电子档保存,但一般这样生成的PDF文档都比较大,传输起来不仅慢,而且像微信这些有大小限制的软件根本无法发送。如何将PDF进行无损压缩呢? 方法1:软件压缩 随着PDF的使用越来越广泛,PDF的转换工具也越来越多,而这些工具也都相应的包含了PDF压缩功能,比如 ...
分类:其他好文   时间:2021-06-07 21:10:36    阅读次数:0
SATA与PCI-E速度对比
SATA SATA接口已经发展到了第三代,理论上的最大速度达到600MB/s。平时大家见到的SATA SSD使用的都是SATA三代,实际测试速度在550MB/s左右,这比普通的机械硬盘的速度100MB/s左右快了数倍。 Generation Speed Special Features SATA 1 ...
分类:其他好文   时间:2021-06-02 17:40:40    阅读次数:0
1368条   1 2 3 4 ... 137 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!