pwd,打印当前目录 ls:List information about the FILEs (the current directory by default) -a/--all -d/--directory dir -a 进入如camera的目录后运行dir、ls会卡住(可以ctrl+c退出)。 ...
分类:
移动开发 时间:
2021-04-16 12:10:03
阅读次数:
0
redis卸载:后配安装https://blog.csdn.net/isea533/article/details/84550237 一、使用redis的List类型结合lpush 和 brpop 来实现 简介 首先redis的List 相当于一个队列,可以实现先进先出的规则 采用brpop 是因为 ...
分类:
编程语言 时间:
2021-04-16 11:57:48
阅读次数:
0
这里记录两种自己接触过的 1.子组件通知父组件 先通过import方法在父组件中引入子组件,这里我是将子组件(页面)扩展成全局dialog引入的 引入的流程如下 <el-dialog :visible.sync="dialogFormContactVisible" :fullscreen="true ...
分类:
其他好文 时间:
2021-04-16 11:51:25
阅读次数:
0
range() 函数 日常工作中,range() 应该非常熟悉了,它可以生成一个迭代对象,然后可以使用 list() 将它转成一个 list # 判断是不是迭代对象 print(isinstance(range(0, 10), Iterable)) # 生成列表 lists = list(range ...
分类:
编程语言 时间:
2021-04-16 11:49:05
阅读次数:
0
字符串与列表的相互转化 字符转列表 str_ = 'sky' str_list = list(str_) print(str_list) # ['s', 'k', 'y'] 列表转字符 str_u = ''.join(str_list) print(str_u) # sky ...
分类:
编程语言 时间:
2021-04-16 11:42:44
阅读次数:
0
oslo.vmware是OpenStack通用框架中的一部分,主要用于实现对虚拟机的管理任务,借助oslo.vmware模块我们可以管理Vmware ESXI集群环境。 读取所有节点主机 from oslo_vmware import api from oslo_vmware import vim_ ...
分类:
编程语言 时间:
2021-04-15 12:46:59
阅读次数:
0
I have a list of dict that looks like this: list=[{u'hello':['001', 3], u'word':['003', 1], u'boy':['002', 2]}, {u'dad':['007', 3], u'mom':['005', 3], ...
分类:
编程语言 时间:
2021-04-15 12:42:23
阅读次数:
0
题目描述 有一个集合组成的list,如果有两个集合有相同的元素,将他们合并。返回最后还剩下几个集合。 集合数 n <= 1000。 每个集合的元素个数 m <= 100。 元素一定是非负整数,且不大于 100000。 样例 样例1: 输入:list = [[1,2,3],[3,9,7],[4,5,1 ...
分类:
其他好文 时间:
2021-04-15 12:24:32
阅读次数:
0
一个请求通过经过中间件最后生成响应 基于koa2的demo const Koa = require('koa'); const app = new Koa(); const PORT = 3000; // #1 app.use(async (ctx, next)=>{ console.log('wa ...
分类:
其他好文 时间:
2021-04-15 12:19:38
阅读次数:
0
先搭建本地YUM源 确认系统版本 [root@moke ~]# cat /etc/redhat-release CentOS Linux release 7.2.1511 (Core) [root@moke ~]# 准备资源: http://mirror.nsc.liu.se/centos-stor ...
分类:
其他好文 时间:
2021-04-15 12:18:08
阅读次数:
0