2020年12月16日
摘要:
Python进阶复习 列表推导式 # 列表推导式 L = [] def my_func(x): return 2*x for i in range(5): L.append(my_func(i)) # 列表推导式[* for i in *] # 第一个 * 为映射函数,其输入为后面 i 指代的内容
阅读全文
posted @ 2020-12-16 23:51
JUranus
阅读(158)
推荐(0)
2020年12月13日
摘要:
群里看到有人简单讲解了python条件判断的or和and判断,非常有意思,mark一下 问题描述: a = 10 or 20 a = 10 and 20 a = 0 or 30 a = 30 or 0 a = 0 and 30 a = 30 and 0 你是否知道每一个a的准确结果? 你做对了么?
阅读全文
posted @ 2020-12-13 15:08
JUranus
阅读(576)
推荐(0)
2020年11月10日
摘要:
原始参考的官网网页:https://www.paddlepaddle.org.cn/documentation/docs/zh/1.5/beginners_guide/install/index_cn.html 使用命令行: python -m pip install paddlepaddle-gp
阅读全文
posted @ 2020-11-10 10:45
JUranus
阅读(1655)
推荐(0)
2020年5月13日
摘要:
代码使用:https://github.com/dBeker/Faster-RCNN-TensorFlow-Python3 学习资料,理解faster rcnn原理和代码理解 1.https://zhuanlan.zhihu.com/p/37998710 对应bilibili视频详细讲解了从rcnn
阅读全文
posted @ 2020-05-13 16:24
JUranus
阅读(242)
推荐(0)
2020年4月28日
摘要:
官网https://copytranslator.github.io/ 下载位置https://copytranslator.github.io/download/ 快速上手指南https://copytranslator.github.io/guide/9.0.0.html#%E5%BF%AB%E
阅读全文
posted @ 2020-04-28 15:44
JUranus
阅读(1839)
推荐(0)
2020年3月29日
摘要:
第一章习题1解析 以下代码均使用MSVC 6.0编译运行通过,为了便于学习,在原代码的基础上进行了一定的修改。 1.如何使用一个具有库的语言来实现一种排序算法以表示和排序集合,将代码实现可用 1 #include<stdio.h> 2 #include<stdlib.h> 3 int comp(co
阅读全文
posted @ 2020-03-29 17:25
JUranus
阅读(266)
推荐(0)
2020年3月15日
posted @ 2020-03-15 00:15
JUranus
阅读(5)
推荐(0)
2020年3月14日
posted @ 2020-03-14 23:56
JUranus
阅读(2)
推荐(0)
2020年3月13日
posted @ 2020-03-13 20:51
JUranus
阅读(1)
推荐(0)
2020年3月12日
摘要:
***最近在学英文版java,该随笔仅用于学习*** 在类中可直接定义variable变量和method方法 方法method定义方法如void showInfo() {...}//打印所有变量,特别用于变量定义为private私有的情况 和类名同名的叫默认构造函数default construct
阅读全文
posted @ 2020-03-12 22:42
JUranus
阅读(141)
推荐(0)