python 列表相关内容 # 列表的索引 查my_list = [1, 2, 'a'] print(my_list) #输出列表元素 >>[1, 2, 'a'] print(my_list[2]) #输出索引为2的元素 >> a print(my_list[-2]) #倒过来数第二个元素即输出索引 ...
分类:
编程语言 时间:
2020-01-27 17:18:02
阅读次数:
50
什么是Shell shell是操作系统的命令解释器,在计算机科学中指“为用户提供用户界面”的软件,我的理解就是系统与用户沟通的桥梁。值得一提的是,shell不仅指的是命令行界面(CLI),图形界面(GUI)也是shell的一种。 壳层(shell)这个说法起源于路易斯·普赞(Louis Pouzin ...
分类:
系统相关 时间:
2020-01-27 00:06:15
阅读次数:
353
获取DOM 给标签添加ref属性 ref='xxx' 然后获取 ele=this.$refs.xxx 1 <div id="app"> 2 <div ref="box">你好!</div> 3 <button @click="my_click">点我获取上面的标签</button> 4 </div> ...
分类:
其他好文 时间:
2020-01-26 23:55:16
阅读次数:
98
阿里云服务器,centos7, rpm包安装MySQL,初始化了个奇葩密码 登陆不上, 修改配置文件/etc/my.cnf,在【mysqld】下面添加一行代码:skip-grant-tables service mysqld restart mysql -uroot -p //此时直接回车,既可以进 ...
分类:
数据库 时间:
2020-01-25 12:57:47
阅读次数:
161
1.string='my name is %s , my age is 18' % 'gtl' print(string) //输出结果为my name is gtl ,my age is 18 s='my name is %s ,my age is %s' % ('alex',18) print( ...
分类:
编程语言 时间:
2020-01-25 11:47:23
阅读次数:
83
This roundtrip is used to render the navigation list when the Opportunity tile is clicked by launchpad. It is mandatory, could not be eliminated. 2: 1 ...
分类:
编程语言 时间:
2020-01-25 10:36:34
阅读次数:
130
# 2. http_request.py import requests from learn_logging_5.write_log_class import MyLog my_logger = MyLog() class HttpRequest: def http_request(self, u ...
分类:
Web程序 时间:
2020-01-24 15:56:26
阅读次数:
98
maven私服搭建 搭建私服的工具选择 Apache基金会的archiva http://archiva.apache.org/ JFrog的Artifactory https://jfrog.com/artifactory/ Sonatype的Nexus https://my.sonatype.c ...
分类:
其他好文 时间:
2020-01-24 00:06:04
阅读次数:
168
好美的图论,真的 light up my life!题意: 给出一个只含有若干1,2,3的数列,我们可以两两交换数列元素;要求输出让这个数列不减的最小交换次数。 思路: 首先看起来很像冒泡.....然鹅要最少交换次数——显然不是模拟冒泡了。 开始用深搜来着,显然没办法剪枝,果断T掉。这个时候就要想一 ...
分类:
其他好文 时间:
2020-01-23 21:09:24
阅读次数:
59
//1.进入my_test数据库use my_test //2.向数据库的user集合中插入一个文档 db.users.insert({ username:"sunwukong"}); //3.查询user集合中的文档db.users.find(); //4.向数据库的user集合中插入一个文档 d ...
分类:
数据库 时间:
2020-01-23 12:26:11
阅读次数:
99