
学习工具
文章平均质量分 69
zhaolongkzz
LfD, HRI, RRC~
展开
-
Ubuntu安装java11
目录Ubuntu安装java111. PPA源安装2. 手动安装Ubuntu安装java11默认ubuntu16.04采取的java-8使用vscode,安装如下插件即可:1. PPA源安装Option 1: Easy Installation (PPA)sudo add-apt-repository ppa:linuxuprising/javasudo apt-get updatesudo apt-get install oracle-java10-installerThen set原创 2021-03-30 22:46:55 · 5983 阅读 · 2 评论 -
python doc 4 —— lambda总结
刚开始学习python的时候很多人可能对于lambda函数不了解,感觉和def很混乱,下面我来介绍一下lambda函数我从一下几个方面来介绍lambda:1、lambda简介2、lambda与def不同之处3、lambda的使用方法1、lambda简介先来看一段代码示例:test = lambda x, y: x+yprint(test(2, 3))print(test('aaa...原创 2020-06-30 13:19:09 · 345 阅读 · 0 评论 -
Python Documents汇总_link
Python Documents汇总Python Doc 1——*和**的区别Python Doc 2——*和**的区别Python Doc 3——*和**的区别Python Doc 4——*和**的区别Python Doc 5——*和**的区别Python Doc 6——*和**的区别Python Doc 7——*和**的区别Python Doc 8——*和**的区别Python Doc 1—...原创 2020-06-30 10:14:48 · 394 阅读 · 0 评论 -
python doc 3 —— 深复制,浅复制,赋值
参考!https://songlee24.github.io/2014/08/15/python-FAQ-02/http://www.runoob.com/w3cnote/python-understanding-dict-copy-shallow-or-deep.html原创 2020-06-30 10:12:12 · 269 阅读 · 1 评论