在学习tensorflow管道化有关操作时,有一个操作是先生成一个文件名队列。在书上使用了这样的代码: filenames = ['test%d.txt'%i for in in range(1,4)] 输出结果是['test1.txt', 'test2.txt', 'test3.txt'] 自我感 ...
分类:
编程语言 时间:
2020-01-19 12:49:49
阅读次数:
102
Java中static使用方法 1.static静态变量 静态变量:每个类只有一个,所有实例共享; 实例变量:每个实例只有一个; 1 package test2; 2 import java.lang.String; 3 public class test2 { 4 public static in ...
分类:
编程语言 时间:
2020-01-18 10:18:57
阅读次数:
73
<div class="layui-upload"> <button type="button" class="layui-btn" id="test2">多图片上传</button> <blockquote class="layui-elem-quote layui-quote-nm" style ...
分类:
Web程序 时间:
2020-01-17 13:18:53
阅读次数:
421
allpairs的使用过程命令Test2是写好的文件,test22是自动生成的文件:allpairs.exe Test2.txt>Test22.txt allpairs下载:链接:https://pan.baidu.com/s/1WVVlvuqkfJX579sHTpnr1g 提取码:r5oy 最近开 ...
分类:
其他好文 时间:
2020-01-10 18:35:45
阅读次数:
333
1.test="alex" v=test.ljust(8,'#') print(v) //输出结果为alex#### 2.test1="alex" v1=test.zfill(8) print(v1) //输出结果为0000alex,以0来填充 3.test2=" alex " v2=test2.r ...
分类:
编程语言 时间:
2020-01-09 13:30:38
阅读次数:
94
<?php //fork.php $cmds = [ '/data/wwwroot/default/test1.php', '/data/wwwroot/default/test2.php', '/data/wwwroot/default/test3.php' ]; foreach($cmds as ...
分类:
Web程序 时间:
2020-01-05 22:22:12
阅读次数:
120
继续沿用第七天数据库:def test2(request): # 1.xxx__lt 小于 :查询出年龄小于22的所有 ret=models.Person.objects.filter(age__lt=22) print(ret) # 2.xxx__lte 小于等于 ret=models.Perso ...
分类:
编程语言 时间:
2020-01-01 20:30:56
阅读次数:
92
that.test1().then(res => { return that.test2(res);}).then(res => { console.log(res); }) test1(){ var that = this; var p = new Promise((resolve,reject) ...
分类:
其他好文 时间:
2019-12-30 11:10:13
阅读次数:
40
鹅厂前端面试 1.有代码如下 function test2(){ return 25; }; console.log(typeof test2()) 问题:写出此时打印出的值 number 2.现有代码如下: var name='aaa'; var obj={ name:'bbb', dose:fu ...
分类:
其他好文 时间:
2019-12-28 20:38:13
阅读次数:
124
1 import threading, time 2 3 class Test(): 4 def test1(self): 5 print("--") 6 time.sleep(3) 7 print(" ") 8 9 10 def test2(self): 11 print("==") 12 tim ...
分类:
编程语言 时间:
2019-12-28 09:36:36
阅读次数:
92