一、可迭代对象基于islice方法实现切片操作 二、islice实现实例: print(list(islice(range(1, 10), 2, 7, 2))) 三、自定义切片方法实现实例: def my_islice(iterable, start, end, step=1): tmp = 0 f ...
分类:
其他好文 时间:
2021-06-02 19:40:35
阅读次数:
0
首先使用bert获取词向量bert-as-service 1.安装Bert-as-Service pip install bert-serving-server # server pip install bert-serving-client # client, independent of `be ...
分类:
其他好文 时间:
2021-06-02 16:44:56
阅读次数:
0
1、公共方法 2、公共方法之总结 3、range()方法 4、enumerate()方法 ...
分类:
编程语言 时间:
2021-05-24 13:36:03
阅读次数:
0
直观理解高斯核函数 import numpy as np import matplotlib.pyplot as plt x = np.arange(-4, 5, 1) x # array([-4, -3, -2, -1, 0, 1, 2, 3, 4]) y = np.array((x >= -2) ...
分类:
其他好文 时间:
2021-02-01 12:54:14
阅读次数:
0
数据结构 字典 list.append NodeList定义和操作 递归 操作 enumerate zip divmod,// (x if a else y) string = list lis.sort int(str(x)[::-1]) 去空格:str.strip() ...
分类:
编程语言 时间:
2021-01-27 13:13:12
阅读次数:
0
原题链接 begin为最长不含重复字符的子字符串的起点 1 class Solution: 2 def lengthOfLongestSubstring(self, s: str) -> int: 3 begin,ans,dic = 0,0,{} 4 for index,c in enumerate ...
分类:
其他好文 时间:
2021-01-26 11:51:45
阅读次数:
0
一、for循环的补充 for+range for i in range(10,3,-1)(从第十位倒取到第四位) print(i) for+enumerate for i,name in enumerate(["egon","tom","jack"]): # [(0,"egon"),(1,"tom" ...
分类:
其他好文 时间:
2020-12-28 11:57:54
阅读次数:
0
Cora Dataset是对Machine Learning Paper进行分类的数据集 -- README: 对数据集的介绍; -- cora.cites: 论文之间的引用关系图。文件中每行包含两个Paper ID, 第一个ID是被引用的Paper ID; 第二个是引用的Paper ID。 -- ...
分类:
其他好文 时间:
2020-12-24 12:30:19
阅读次数:
0
一、列表推导式 如何生成一个[data0、data1、data2.....data99]的列表?? 循环方法: list1=[] for i in range(100): list1.append('data{}'.format(i)) print("list1的值为:",list1) 用列表推导式 ...
分类:
其他好文 时间:
2020-12-01 12:25:48
阅读次数:
7
# 作用就是:将可迭代对象中的元素和索引同时取出 seq = ['one', 'two', 'three'] for i, element in enumerate(seq): print('index:element {}: {}'.format(i, element)) print('\n') ...
分类:
编程语言 时间:
2020-11-08 16:38:34
阅读次数:
16