最新 最热

Array - 121. Best Time to Buy and Sell Stock

Say you have an array for which the _i_th element is the price of a given stock on day i.

2020-09-23
1

Array - 122. Best Time to Buy and Sell Stock II

Say you have an array for which the _i_th element is the price of a given stock on day i.

2020-09-23
1

Array - 123. Best Time to Buy and Sell Stock III

Say you have an array for which the _i_th element is the price of a given stock on day i.

2020-09-23
1

Array - 238. Product of Array Except Self

Given an array nums of n integers where n > 1,  return an array output such that output[i] is equal to the product of all the elements of numsexcept nums[i].

2020-09-23
1

python+selenium 外部文件导入操作

一开始我觉得导入外部文件是需要操作 windows 的文件窗口呢,后来发现原来不用那么麻烦,只要给文件上传的元素传一个本地路径就好了,就是一个 input 类型的。...

2020-09-23
1

Python 技巧篇-如何避免python报错导致强制关闭窗口

运行窗口是我们获取信息的重要途径,但是运行的过程中,窗口自己就关了,我么甚至不能知道程序是运行完了还是报错了。比如:有时也就眼前一闪,大概好像看到有一点报错信息产生。...

2020-09-23
1

Chrome 插件编写-用几行js代码实现写入剪贴板功能

我们的原理是,创建一个input元素,将要写入的内容放入input里,然后选择input,再调用浏览器的复制命令,将input里的内容复制,最后隐藏input。

2020-09-23
0

习题 11: 提问

我已经出过很多打印相关的练习,让你习惯写简单的东西,但简单的东西都有点无聊,现在该跟上脚步了。我们现在要做的是把数据读到你的程序里边去。这可能对你有点难度,你可能一下子不明白,不过你需要相信我,无论如何把习题做了...

2020-09-16
0

Python基础第一个案例:猜数字游戏,这个都写不出,那就放弃吧

前言本文案例只适合新手,老司机请绕路。游戏介绍:程序自己有一个数字,用户输入一个数字,两个数字进行比较。知识点:input函数字符串while循环if条件判断语句break语句开始撸代码先来看看效果图代码# 1. 有一个数字my_num =...

2020-09-15
1

组合数学-抽屉原理

抽屉原理又称鸽巢原理:把 n+1个物品放进 n个盒子里,那么至少有一个盒子包含两个及以上的物品。

2020-09-15
1