上一页 1 ··· 32 33 34 35 36 37 38 39 40 ··· 53 下一页
摘要: j = 0 jtemp = 1 for i in range(0, 10, 2): for j in range(jtemp, 20): if i == j: jtemp = j print('i:%s,j:%s,jtemp:%s' % (i, j, jtemp)) break print(i, j, jtemp) 阅读全文
posted @ 2020-01-05 18:04 java渣渣 阅读(734) 评论(0) 推荐(0) 编辑
摘要: https://www.jianshu.com/p/b9b3d66aa0be 阅读全文
posted @ 2020-01-05 16:33 java渣渣 阅读(117) 评论(0) 推荐(0) 编辑
摘要: http://study.marearts.com/2014/05/open-cv-get-histogram-and-compare-color.html https://www.jianshu.com/p/bd12c4273d7dhttps://docs.opencv.org/3.4/d8/dc 阅读全文
posted @ 2020-01-02 15:47 java渣渣 阅读(185) 评论(0) 推荐(0) 编辑
摘要: https://github.com/alibaba/arthas/issues/482 阅读全文
posted @ 2020-01-02 15:44 java渣渣 阅读(804) 评论(0) 推荐(0) 编辑
摘要: https://stackoverflow.com/questions/1653970/does-python-have-an-ordered-set 阅读全文
posted @ 2019-12-30 14:35 java渣渣 阅读(782) 评论(0) 推荐(0) 编辑
摘要: https://www.urlencoder.io/python/ 阅读全文
posted @ 2019-12-26 11:24 java渣渣 阅读(146) 评论(0) 推荐(0) 编辑
摘要: 参考:https://www.pyimagesearch.com/2014/09/15/python-compare-two-images/ 阅读全文
posted @ 2019-12-20 12:26 java渣渣 阅读(518) 评论(0) 推荐(0) 编辑
摘要: 注意:要比较的两张图片大小要一样 参考: https://www.blog.pythonlibrary.org/2016/10/11/how-to-create-a-diff-of-an-image-in-python/ 阅读全文
posted @ 2019-12-19 11:57 java渣渣 阅读(1354) 评论(0) 推荐(0) 编辑
摘要: public class Solution { public int StrToInt(String str) { if (str == null || str.trim().length() < 1) { return 0; } char op = str.charAt(0); int start = 0; int flag = 0; if (op == '+') { start++; flag 阅读全文
posted @ 2019-12-10 12:30 java渣渣 阅读(189) 评论(0) 推荐(0) 编辑
摘要: http://zetcode.com/python/csv/ https://docs.python.org/3/library/csv.html ```python # import json # with open( # 'C:\\Users\\23141\\Desktop\\2020-01-2 阅读全文
posted @ 2019-12-06 11:56 java渣渣 阅读(139) 评论(0) 推荐(0) 编辑
上一页 1 ··· 32 33 34 35 36 37 38 39 40 ··· 53 下一页