Python 字符串 字符串是 Python 中最常用的数据类型。我们可以使用引号( ' 或 " )来创建字符串。 创建字符串很简单,只要为变量分配一个值即可。例如: var1 = 'Hello World!'var2 = "Runoob" var1 = 'Hello World!'var2 = " ...
分类:
编程语言 时间:
2019-10-04 13:27:50
阅读次数:
120
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
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
题目链接 题意: 石头剪刀布,有一个人时裁判,给你一系列情况,让你判断裁判的情况: 有一个裁判 player x can be determined to be the judge after y lines 没有裁判,谁是裁判都不成立 Impossible 有多个裁判 Can not determ ...
分类:
其他好文 时间:
2019-10-01 12:15:26
阅读次数:
113
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版本,不支持接口的Weak,和UnSafe的引用,支持对象的Weak, UnSafe,而且仅在Android和Ios平台上支持。 现在Delphi XE10.1 Berlin终于增加了对接口的Weak, UnSafe的支持。 1.Weak Weak引用,不影响引用计数器,但是如果对 ...
使用包inspect 查看模块所在路径: 查看源码: 参考:https://zhuanlan.zhihu.com/p/37095163 ...
分类:
编程语言 时间:
2019-09-24 12:29:10
阅读次数:
80
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