find
PTA A1009&A1010
第五天 A1009 Product of Polynomials (25 分) 题目内容 This time, you are supposed to find A×B where A and B are two polynomials.[详细]
2020-07-15 15:02 分类:Linux[转帖]linux下的find文件查找命令与grep文件内容查找命令
https://www.cnblogs.com/shileima/p/8431393.html 在使用linux时,经常需要进行文件查找。其中查找的命令主要有find和grep。两个命令是有区的。[详细]
2020-07-15 12:48 分类:Linuxlinux常用命令---------------find
1、find 基本模式 find path -option [ -print ] [ -exec -ok command ] {} \\;[详细]
2020-07-13 15:29 分类:LinuxPAT Advanced 1009 Product of Polynomials
This time, you are supposed to find A×B where A and B are two polynomials.[详细]
2020-07-13 12:47 分类:LinuxSelenium常用API的使用-selenium元素定位
1.selenium定位方法 Selenium提供了8种定位方式。 id name class name tag name link text partial link text xpath css selector 这8种定位方式在Java selenium中所对应的方法为: findElement(By.id()) findElement(By.name()) findEle...[详细]
2020-07-13 08:52 分类:路由交换-
Python的正则表达式总结
s=‘hello world‘ # print(s.find(‘llo‘)) #返回的是索引 # ret=s.replace(‘ll‘,‘xx‘) # print(ret)[详细]
2020-07-11 20:27 分类:Python