一行代码实现 1-100之和? print(sum(range(1,101))) 如何在一个函数内部修改全局变量 # 使用global关键字 a = 10 def fn(): global a a = 4 fn() print(a) # 4 列出5个python标准库 # os 模块 # re 模块 ...
分类:
编程语言 时间:
2020-06-28 22:24:01
阅读次数:
154
CCSU团队训练赛 H - Billionaires URAL - 1650 ? You probably are aware that Moscow holds the first place in the world with respect to the number of billionai ...
分类:
其他好文 时间:
2020-06-28 22:22:44
阅读次数:
149
https://blog.csdn.net/ustbyangcheng/article/details/8689632 sudo apt-get build-dep openscenegraph #安装必备依赖库 sudo apt-get install mesa-common-dev freegl ...
分类:
系统相关 时间:
2020-06-28 22:16:26
阅读次数:
111
勾选上去就好, idea 运行docker build 和 push 需要调用本地docker 的守护进程, 需要暴露出来 ...
上一篇中说了如何新建一个Project,接下来,我们讲继续详细的讨论如何去设置相关的配置。 1.源码管理 前置条件:有安装Git插件 a,进入配置页面 b,源码管理选择Git,稍等一下会自动连接上 2.构建触发器 a, Build Periodically,周期性进行构建,某一个时刻自动去构建。 定 ...
分类:
其他好文 时间:
2020-06-28 11:22:32
阅读次数:
67
修改sitemap.json文件 "global": { "webviewParameter": { "titleNView": { "autoBackButton": true, "backgroundColor": "#f7f7f7",//导航栏背景色 "titleColor": "#00000 ...
分类:
移动开发 时间:
2020-06-27 21:40:37
阅读次数:
173
GIT安装 # 似乎下载地址被墙了 可以用迅雷复制下载链接进行下载 https://git-scm.com/ # 下载之后一路下一步安装 本地仓库操作 在安装好首次使用需要进行全局配置 左面空白处右击,点击Git bash here 以打开Git命令行窗口 git config --global u ...
分类:
其他好文 时间:
2020-06-27 21:37:46
阅读次数:
98
golang常用操作与命令 1.执行golang文件 go run hello_world.go 2.编译成可执行文件 go build hello_world 则会生成hello_world可执行文件,即可直接运行 ./hello_world ...
分类:
其他好文 时间:
2020-06-27 21:36:58
阅读次数:
58
Maven 有三个相互独立的生命周期:Clean 生命周期、build 生命周期、site 生命周期。 各个构建环节执行的顺序:不能打乱顺序,必须按照既定的正确顺序来执行。 Maven 的核心程序中定义了抽象的生命周期,生命周期中各个 阶段的具体任务是由插件来完成的。 Maven 核心程序为了更好的 ...
分类:
其他好文 时间:
2020-06-27 16:12:20
阅读次数:
53
此博客链接: 首先 我们选择Build -> Generate Signed APK 已经生成apk,需要修改内容,再次生成。 ...
分类:
移动开发 时间:
2020-06-27 11:49:53
阅读次数:
72