码迷,mamicode.com
首页 >  
搜索关键字:llc    ( 325个结果
for循环:用turtle画一颗五角星
import turtle turtle.penup() turtle.left(90) turtle.fd(200) turtle.pendown() turtle.right(90) turtle.fillcolor("red") turtle.begin_fill() turtle.circl... ...
分类:其他好文   时间:2018-05-09 22:50:37    阅读次数:211
程序执行流程/布尔类型与布尔:运算猜数字游戏;库的使用:turtle
mynumber=50 while True: guess=float(input('请输入一个数字')) if guess>mynumber: print('数字猜大了') elif guess<mynumber: print('数字猜小了') else: print('恭喜你猜对了') brea... ...
分类:其他好文   时间:2018-05-09 22:37:00    阅读次数:108
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.penup() turtle.left(90) turtle.fd(200) turtle.pendown() turtle.right(90) turtle.fillcolor("red") turtle.begin_fill() turtle.circl... ...
分类:其他好文   时间:2018-05-07 17:39:55    阅读次数:159
内存保护机制及绕过方案——利用未启用SafeSEH模块绕过SafeSEH
前言:之前关于safeSEH保护机制的原理等信息,可在之前的博文(内存保护机制及绕过方案中查看)。 利用未启用SafeSEH模块绕过SafeSEH 一个不是仅包含中间语言(1L)且未启用SafeSEH的模块中的异常处理,如果异常处理链在栈上,异常处理函数指针不在栈上,那么这个异常处理就可以被执行。 ...
分类:其他好文   时间:2018-05-06 22:23:51    阅读次数:189
Download and Install Apache Zookeeper on Ubuntu
http://www.techburps.com/misc/download-and-install-apache-zookeepr/36 In previous article of this Big-Data tutorials series we have seen, What is Apac ...
分类:Web程序   时间:2018-05-06 18:03:39    阅读次数:230
001——计算机发展历史
前言 一种比较势利的😜观点来划分计算机,其实是根据大小。我们用的笔记本、台式机其实应该叫做 minicomputer 计算机进化史 按照从大到小 Mainframes and super computers are the biggest computers – million dollar ma ...
分类:其他好文   时间:2018-05-02 11:20:23    阅读次数:151
学习笔记CB012: LSTM 简单实现、完整实现、torch、小说训练word2vec lstm机器人
真正掌握一种算法,最实际的方法,完全手写出来。 LSTM(Long Short Tem Memory)特殊递归神经网络,神经元保存历史记忆,解决自然语言处理统计方法只能考虑最近n个词语而忽略更久前词语的问题。用途:word representation(embedding)(词语向量)、sequen ...
分类:其他好文   时间:2018-05-01 15:27:29    阅读次数:318
六、系统时钟和定时器
6.1 介绍 CPU 的时钟控制逻辑既可以外接晶振,然后通过内部电路产生时钟源;也可以直接使用外部提供的时钟源,它们通过引脚的设置来选择。S3C2440A有两个锁相环,(MPLL)一个用于FCLK、PCLK和HCLK,(UPLL)另一个用于USB模块(48MHZ)。时钟控制逻辑给整个芯片提供三种时钟 ...
分类:其他好文   时间:2018-04-27 22:57:31    阅读次数:213
Python3 中 字符串操作示例
Python3 中 字符串操作示例# -*- coding:utf-8 -*-str = 'abcdededededefg'#根据索引获取数据,0查看第一个字符,-1 查看从右开始的第一个字符print(str[0])print(str[-1])#字符串截取/切片print(str[2:]) # c... ...
分类:编程语言   时间:2018-04-26 11:57:47    阅读次数:154
325条   上一页 1 ... 25 26 27 28 29 ... 33 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!