码迷,mamicode.com
首页 >  
搜索关键字:rtl    ( 715个结果
python 动态导包
import importlib kk= importlib.import_module('get_IP_package.config') # 某个py 文件的路径 , 或者 某个路径下的 类名 ,不能是方法名 print(kk.HOST_AND_PORT) # 调用时 , 直接后面传属性名,或者方... ...
分类:编程语言   时间:2019-05-14 13:10:14    阅读次数:126
Python-100天代码
import turtle turtle.pensize(4) turtle.pencolor('red') turtle.forward(100) turtle.right(90) turtle.forward(100) turtle.right(90) turtle.forward(100) t ...
分类:编程语言   时间:2019-05-08 00:29:43    阅读次数:178
编写函数,接受一个string,返回一个bool值,指出string是否有5个或者更多字符,使用此函数打印出长度大于等于5的元素
#include using namespace std; bool isFive(const string& s1) { return s1.size() >=5; } void shortFive(vector& words, vector::size_type sz) { auto end_f... ...
分类:其他好文   时间:2019-04-27 13:26:42    阅读次数:169
黄色的五角星
import turtle as t t.color("yellow") #填黄色的线t.fillcolor("yellow") #填充黄色的、填进五星红旗t.begin_fill() #开始填充for i in range(5): t.forward(100) #走100 t.right(144) ...
分类:其他好文   时间:2019-04-26 18:01:49    阅读次数:134
一行一行手敲webpack4配置
一、webpack4 基本配置 这一部分通过webpack的基本配置,使用loader对图片和样式进行打包,从而了解webpack4简单的用方法,保证自己能够配置正确,提升学习动力。 1.初始化配置 目录结构 安装webpack 安装指定版本webapck webpack 4+ 版本,还需要安装we ...
分类:Web程序   时间:2019-04-26 17:56:16    阅读次数:169
ZYNQ原理图中添加RTL设计模块
前言 已有的RTL模块怎么添加到原理图中? 流程 (1)添加文件到设计中。 (2)右键文件添加到block design中。 (3)连线即可。 以上。 ...
分类:其他好文   时间:2019-04-25 14:31:00    阅读次数:134
Python类元编程初探
在《流畅的Python》一书中提到: Classes are first class object in Python, so a function can be used to create a new class ant any time, without using the class key ...
分类:编程语言   时间:2019-04-25 01:23:54    阅读次数:157
python动态模块导入
首先创建一个模块目录lib,然后在目录内创建一个模块为:aa.py 官方推荐: import importlib aa = importlib.import_module('lib.aa') c = aa.c() print(c) __import__导入方式 lib = __import__('l ...
分类:编程语言   时间:2019-04-19 00:51:08    阅读次数:161
tinymce原装插件阅读(二)-link
link 功能描述如下: 单纯放置光标: 1、如果光标放到了<a>上,读取a标签的内容,并弹框显示,确定的时候,更新当前a标签。 2、否则,就创建弹框,确定的时候,按照参数添加a标签。 seletion: 1、部分或全部选择<a>的时候,与上面的1一样,更新。 2、选择非文字的<span>、<p>等 ...
分类:其他好文   时间:2019-04-12 01:00:45    阅读次数:292
Python 玫瑰花绘制
import turtle # 设置初始位置turtle.penup()turtle.left(90)turtle.fd(200)turtle.pendown()turtle.right(90) # 花蕊turtle.fillcolor("red")turtle.begin_fill()turtle ...
分类:编程语言   时间:2019-04-11 19:42:47    阅读次数:854
715条   上一页 1 ... 18 19 20 21 22 ... 72 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!