码迷,mamicode.com
首页 >  
搜索关键字:find 指令 文件查找    ( 46902个结果
Vue3手册译稿 - 列表渲染
使用v-for将数组映射成元素列表 可以使用v-for指令将数组渲染成一个列表。v-for指令在使用特殊语法item in items,items指向数组源,item是迭代 items的每项的别名: <ul id="array-rendering"> <li v-for="item in items ...
分类:其他好文   时间:2021-03-05 12:55:18    阅读次数:0
字符串
1.字符串 string 的定义 string 的初始化 string 的长度 string 的元素的访问 数组 迭代器 元素的操作 insert() erase() clear() 运算符 连接 + 比较运算符 判断是否相等 常用函数 find() substr() /** * @author: ...
分类:其他好文   时间:2021-03-04 13:24:30    阅读次数:0
Linux shell 命令之find, useradd, groupadd,通配符,及grep命令
sudo find /etc/ -type f -name "rc*" -exec ls -l {} \;find . -name "t*" -perm 777 -printfind . -mtime -180find /var/log/ -mtime -3 -ok rm {} \; vim 替换: ...
分类:系统相关   时间:2021-03-04 13:03:44    阅读次数:0
selenium元素定位篇:id定位
在前端,id是唯一的,只属于一个元素。 在python中,元素定位的方法如下: def find_element_by_id(self, id_): """Finds an element by id. :Args: - id\_ - The id of the element to be foun ...
分类:其他好文   时间:2021-03-03 12:29:01    阅读次数:0
python 3 解决 ERROR: Could not find a version that satisfies the requirement xxx 的问题
问题:pyhton 3安装module报错ERROR: Could not find a version that satisfies the requirement config.paths % pip install config.paths ERROR: Could not find a ve ...
分类:编程语言   时间:2021-03-03 11:48:53    阅读次数:0
forEach,filter,map,find的使用区别
forEach 功能: 循环遍历数组中的每一项,只能遍历数组 特点: 没有返回值,返回值为undefined,并且不可链式调用 示例: map 功能: 循环遍历数组中的每一项,只能遍历数组 特点: 必须return返回值,如果不给return,它会返回一个undefined,返回的值不会影响原数组, ...
分类:其他好文   时间:2021-03-02 12:03:26    阅读次数:0
JAVA开篇&Hello world
## 四、计算机基础知识 ### 4.1 计算机 * 电脑 ### 4.2 硬件 * 电脑中的电子元件组成的硬件 ### 4.3 软件 * 数据和指令的集合* 按照一定的顺序执行,完成指定的功能 ### 4.4 系统软件 * 操作系统 * Windows * MacOS * Linux * Andr ...
分类:编程语言   时间:2021-03-02 11:56:30    阅读次数:0
批量下载抖音某用户的所有作品
import requests import re import os from glom import * def get_video(url): requests.packages.urllib3.disable_warnings() session = requests.session() h ...
分类:其他好文   时间:2021-03-02 11:50:01    阅读次数:0
[CodeForces1492C] Maximum Width
description: There are two strings \(a\), \(b\) with the length \(n\), and \(m\). Find the Array <\(p_1, p_2, ..., p_m>\), such that \(a_{p_i}= b_i\), ...
分类:其他好文   时间:2021-03-01 13:26:32    阅读次数:0
1121 Damn Single (25 分)
"Damn Single (单身狗)" is the Chinese nickname for someone who is being single. You are supposed to find those who are alone in a big party, so they can ...
分类:其他好文   时间:2021-03-01 13:14:50    阅读次数:0
46902条   上一页 1 ... 30 31 32 33 34 ... 4691 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!