在服务器安装Jupyter后:
1、生成配置文件$jupyter notebook --generate-config
2、终端输入ipython
,生成密码
Spring boot 入门
Posted on
|
In
编程学习
SpringBoot其实就是Spring的简化版本,因为Spring依赖的项目太多,其xml文件的配置显得尤为繁琐,因此出现了一键配置的SpringBoot框架
staticmethod和classmethod
Posted on
|
In
python
一般来说,要使用某个类的方法,需要先实例化一个对象再调用方法。
而使用@staticmethod或@classmethod,就可以不需要实例化,直接类名.方法名()来调用。
这有利于组织代码,把某些应该属于某个类的函数给放到那个类里去,同时有利于命名空间的整洁。
docker常用命令
Posted on
从docker hub下载一个image
1 | docker pull name:version |
运行一个docker,开启其bash
1 | docker run -it ubuntu:18.04 bash |
leetcode-22解答
给定一个值n,要求能生成n对括号的组合数,题目具体如下:
Given n pairs of parentheses, write a function to generate all combinations of well-formed parentheses.