We all, whether we know it or not, are fighting to make the kind of a world that we should like.不管意识到与否,我们都在为创造一个我们喜欢的世界而奋斗。 IDEA导入eclipse项目 弃用eclipse ...
分类:
系统相关 时间:
2020-07-03 15:46:11
阅读次数:
107
We all, whether we know it or not, are fighting to make the kind of a world that we should like.不管意识到与否,我们都在为创造一个我们喜欢的世界而奋斗。 Python —— pycharm初使用 电脑需要 ...
分类:
编程语言 时间:
2020-07-03 14:06:47
阅读次数:
95
#include <stdio.h> int main() { printf("Hello World\n");//printf()输出 return 0; } \n 的意思是:回车换行。将当前位置移到下一行的开头。 C语言注释方法有两种: 多行注释: /* 注释内容 */ 单行注释: //注释一行 ...
分类:
其他好文 时间:
2020-07-03 12:12:34
阅读次数:
48
什么是代理? 1.代理(委托):自己不亲身做,让别人做 2.定义了协议的类可以看作将协议定义的方法代理给了实现这些方法的类 boss h #import <Foundation/Foundation.h> #import "Assisant.h" @interface boss : NSObject ...
分类:
其他好文 时间:
2020-07-03 00:37:52
阅读次数:
79
一、调用外部程序 1、为什么python被称为胶水语言:python可以粘合各种外部程序和各种语言的库,实现特定的功能。 2、os库里面的system函数,相当于打开操作系统的shell,敲入一个命令,比如打开msprint命令 打开windows下的画图工具。 3、os.system( ) #如果 ...
分类:
其他好文 时间:
2020-07-02 18:17:14
阅读次数:
59
https://www.redteamsecure.com/compliance/cryptocurrency-security/ The CryptoCurrency Security Standard (CCSS) is a set of requirements designed to gov ...
分类:
其他好文 时间:
2020-07-02 13:34:38
阅读次数:
64
一、复习 字符串 # 创建字符串很简单只要为变量分配一个值即可 var1 = 'Hello World!' var2 = "Runoob" print ("var1[0]: ", var1[0]) print ("var2[1:5]: ", var2[1:5]) 列表 # 列表使用[]方括号 # 列 ...
分类:
编程语言 时间:
2020-07-02 10:50:10
阅读次数:
57
https://www.risk.net/quantitative-finance/7344891/quant-finance-masters-guide-2020 Risk.net’s guide to the world’s leading quant master’s programmes, ...
分类:
其他好文 时间:
2020-07-02 10:44:03
阅读次数:
79
第一个小程序 <template> <div id="app"> <div>hello world!</div> <router-view></router-view> </div> </template> <script> export default { name: 'App' } </scri ...
分类:
其他好文 时间:
2020-07-01 14:21:10
阅读次数:
182
对于python列表的理解可以和C语言里面的数组进行比较性的记忆与对照,它们比较相似,对于python里面列表的定义可以直接用方括号里加所包含对象的方法,并且python的列表是比较强大的,它包含了很多不同类型的数据:整型数字,浮点型,字符串以及对象等。定义举例如下: List1=[1,2,3,”h ...
分类:
编程语言 时间:
2020-07-01 12:33:44
阅读次数:
70