码迷,mamicode.com
首页 >  
搜索关键字:ignatius and the pri    ( 1549个结果
初识多线程
1 import threading 2 import time 3 def coding(): 4 for i in range(3): 5 print('输入代码%s' %i) 6 time.sleep(1) 7 def drawing(): 8 for i in range(3): 9 pri ...
分类:编程语言   时间:2020-06-07 13:13:27    阅读次数:68
python沿行或者沿列拼接空矩阵和其他矩阵
import numpy as np a=[] n=1 a=np.hstack((a,n)) n=2 a=np.hstack((a,n)) print(a) b=np.empty((0,1),int) n=1 b=np.vstack((b,n)) n=2 b=np.vstack((b,n)) pri ...
分类:编程语言   时间:2020-06-05 20:58:31    阅读次数:79
[kuangbin带你飞]专题1-23 Doing Homework HDU - 1074
题目链接:https://vjudge.net/problem/HDU-1074 Ignatius has just come back school from the 30th ACM/ICPC. Now he has a lot of homework to do. Every teacher ...
分类:其他好文   时间:2020-06-05 13:08:02    阅读次数:72
yocto编译时报错"fontconfig-2.12.1/src/fcmatch.c:324:63: error: ‘PRI_CHAR_WIDTH_STRONG' undeclared here (not in a function); did you mean ‘PRI_WIDTH_STRONG’?"
答: 打上以下补丁即可修复 $ wget https://patchwork.openembedded.org/patch/146107/mbox/ -O mbox && git am mbox --reject 参考资料: https://patchwork.openembedded.org/pa ...
分类:其他好文   时间:2020-05-29 21:01:03    阅读次数:172
编写高质量Python代码的59个有效方法
第17条:在参数上面迭代是,要多加小心 def read_visits(data_path): with open(data_path) as f: for line in f: yield int(line) visits = read_visits("./my_numbers.txt") pri ...
分类:编程语言   时间:2020-05-25 19:29:24    阅读次数:89
第四章
一、路由器工作原理二、路由表构成路由表的构成:目的网络地址(Dest)标识ip包到达的目的逻辑网络或子网地址;掩码(Mask)标识目的主机或路由器所在的网段的地址;下一跳地址(Gw)与承载路由表的路由器相接的相接的路由器端口地址;发送的物理端口(interface)数据包离开路由器去往目的地时经过的接口;路由信息的来源(Owner)表示该路由信息是怎样学习到的;路由优先级(pri)管理距离,决定路
分类:其他好文   时间:2020-05-20 09:29:16    阅读次数:50
Python GUI编程(Tkinter)Menu顶层菜单
import tkinterwin = tkinter.Tk()win.title("sunck")win.geometry("400x400+200+20")#菜单条menubar = tkinter.Menu(win)win.config(menu=menubar)def func(): pri ...
分类:编程语言   时间:2020-05-19 16:43:53    阅读次数:104
Java 导包
静态导包 //static修饰 最末尾必须是一个静态成员 import static java.lang.System.out; import static java.util.Arrays.sort; public static void main(String[] args) { out.pri ...
分类:编程语言   时间:2020-05-18 20:31:56    阅读次数:69
re模块中其它常用的方法
1 import re 2 print(' sub ') 3 phone = "2004-959-559 # 这是一个国外电话号码" 4 # 删除字符串中的 Python 注释 5 pattern = r'#.*$' 6 result = re.sub(pattern,'',phone) 7 pri ...
分类:其他好文   时间:2020-05-18 10:42:20    阅读次数:51
SQL答案
create table student( sno varchar2(10) primary key, sname varchar2(20), sage number(2), ssex varchar2(5) ); create table teacher( tno varchar2(10) pri ...
分类:数据库   时间:2020-05-18 01:06:38    阅读次数:290
1549条   上一页 1 ... 4 5 6 7 8 ... 155 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!