码迷,mamicode.com
首页 >  
搜索关键字:bar    ( 5412个结果
Selenium3与Python3实战 Web自动化测试框架(一)
一、环境搭建 1、selenium环境搭建 Client: pycharm python3.6 Driver: Chrome → ChromeDriver Firefox → FirefoxDriver IE → InternetExplorerDriver Selenium 1.1、Seleniu ...
分类:编程语言   时间:2020-06-18 23:22:27    阅读次数:163
xlrd——读取日期格式数据
原文:https://www.cnblogs.com/rongge95500/p/11655322.html 经常使用python操作Excel,就会遇到各种坑,比如,有时候你读取到的某一单元格的数据,你预想的结果本来应该是这样的 ['2019-03-26', '2019-03-26'...],但是 ...
分类:其他好文   时间:2020-06-18 19:52:19    阅读次数:56
使用vue-cli 4.0 搭建后台系统 (顶部导航+左侧导航) 第四集
1。主要说一说,顶部导航和左侧菜单的联动和切换。主要 组件components->topbar->inedx.vue <el-menu :default-active="activeMenu" class="el-menu-bar" mode="horizontal" :background-col ...
分类:其他好文   时间:2020-06-18 14:37:32    阅读次数:140
python函数之进阶 函数嵌套,命名空间,闭包
python函数之进阶 1:函数嵌套 一:什么是函数嵌套 在一个函数内又定义了另外一个函数 二:函数定义 def foo(): def bar() print('from bar') bar() foo() # 这个是通过foo函数调用里面的bar函数 def foo(): def f2(): pr ...
分类:编程语言   时间:2020-06-17 23:28:25    阅读次数:79
471. 最高频的K个单词
471. 最高频的K个单词 中文English 给一个单词列表,求出这个列表中出现频次最高的K个单词。 样例 样例 1: 输入: [ "yes", "lint", "code", "yes", "code", "baby", "you", "baby", "chrome", "safari", "l ...
分类:其他好文   时间:2020-06-17 01:51:03    阅读次数:68
dll编写指标
使用方法不做细诉详见网上教程http://bbs.tianya.cn/post-no110-13686215-1.shtml 1、如果需要传入多个序列参数时,可以使用m_pData指针获得对应当前bar状态的开高低收等数据。 2、对于结尾都有return nPeriod – 1; return -1 ...
分类:其他好文   时间:2020-06-16 23:20:20    阅读次数:83
趣味英语2
1.The quick brown fox jumps over a lazy dog. 那只敏捷的棕色狐狸跳过了一只懒惰的狗。 这个句子包含了英语中的26个字母。 2.Was it a bar or a bat I saw ? 我看到的是酒吧还是蝙蝠? 这是一句回文句,顺着读和倒着读是一样的。类似 ...
分类:其他好文   时间:2020-06-14 15:00:27    阅读次数:74
代码统计150行
print(' 无参函数 ') 示范一: def bar(): print('from bar') def foo(): bar() print('from foo') foo() #from bar from foo 示范二: def foo(): bar() print('from foo') ...
分类:其他好文   时间:2020-06-14 12:52:08    阅读次数:50
ES之类和继承
原型继承 function User(name,age) { this.name=name this.age=age } User.prototype.info=function(){ console.log(`my name is ${this.name}`) } const u1=new Use ...
分类:其他好文   时间:2020-06-13 19:48:12    阅读次数:65
1074 Reversing Linked List (25分)(链表区间反转)
1074 Reversing Linked List (25分) Given a constant K and a singly linked list L, you are supposed to reverse the links of every K elements on L. For ex ...
分类:其他好文   时间:2020-06-13 00:48:49    阅读次数:54
5412条   上一页 1 ... 20 21 22 23 24 ... 542 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!