码迷,mamicode.com
首页 >  
搜索关键字:lines    ( 2570个结果
Python - 字符串 - 第七天
Python 字符串 字符串是 Python 中最常用的数据类型。我们可以使用引号( ' 或 " )来创建字符串。 创建字符串很简单,只要为变量分配一个值即可。例如: var1 = 'Hello World!'var2 = "Runoob" var1 = 'Hello World!'var2 = " ...
分类:编程语言   时间:2019-10-04 13:27:50    阅读次数:120
Codeforces Round #590 (Div. 3)
D. Distinct Characters Queries Description You are given a string ss consisting of lowercase Latin letters and qq queries for this string. Recall that ...
分类:其他好文   时间:2019-10-02 14:37:51    阅读次数:112
Educational Codeforces Round 37-F.SUM and REPLACE (线段树,线性筛,收敛函数)
F. SUM and REPLACE time limit per test2 seconds memory limit per test256 megabytes inputstandard input outputstandard output Let D(x) be the number of ...
分类:其他好文   时间:2019-10-02 14:34:23    阅读次数:77
Rochambeau ——带权并查集
题目链接 题意: 石头剪刀布,有一个人时裁判,给你一系列情况,让你判断裁判的情况: 有一个裁判 player x can be determined to be the judge after y lines 没有裁判,谁是裁判都不成立 Impossible 有多个裁判 Can not determ ...
分类:其他好文   时间:2019-10-01 12:15:26    阅读次数:113
[一]基本sqlplus命令
基本sqlplus命令: ...
分类:数据库   时间:2019-09-26 00:37:03    阅读次数:107
Soldier and Number Game-素数筛
Two soldiers are playing a game. At the beginning first of them chooses a positive integer n and gives it to the second soldier. Then the second one t ...
分类:其他好文   时间:2019-09-25 22:27:48    阅读次数:105
Delphi XE10.1 引用计数(Delphi XE10.1 Berlin终于增加了对接口的Weak, UnSafe的支持)
以往的Delphi版本,不支持接口的Weak,和UnSafe的引用,支持对象的Weak, UnSafe,而且仅在Android和Ios平台上支持。 现在Delphi XE10.1 Berlin终于增加了对接口的Weak, UnSafe的支持。 1.Weak Weak引用,不影响引用计数器,但是如果对 ...
分类:Windows程序   时间:2019-09-24 17:56:24    阅读次数:177
python 查看源代码
使用包inspect 查看模块所在路径: 查看源码: 参考:https://zhuanlan.zhihu.com/p/37095163 ...
分类:编程语言   时间:2019-09-24 12:29:10    阅读次数:80
一个防DNS污染的github项目
https://github.com/googlehosts/hosts 使用方法: 1、找到你需要的网站 2、$ sudo gedit /etc/hosts 3、粘贴到# The following lines are desirable for IPv6 capable hosts之前 4、保存 ...
分类:其他好文   时间:2019-09-21 17:07:29    阅读次数:119
去停用词
```python import pandas as pd stop_words = [] with open('data/stop_words.txt','r',encoding='utf-8') as f: lines = f.readlines() for i in lines: word =... ...
分类:其他好文   时间:2019-09-21 16:49:31    阅读次数:79
2570条   上一页 1 ... 30 31 32 33 34 ... 257 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!