摘要: def histogram1(s): d = dict() for c in s: d[c] = d.get(c,0)+1 return d h = histogram1('adwagagg') print(h) 阅读全文
posted @ 2022-03-23 21:22 玫瑰少年 阅读(301) 评论(0) 推荐(0) 编辑
摘要: def dict1(x): fen = open('words.txt') dict2 = dict() for line in fen: word=line.strip() dict2[word]='' print(dict2) if x in dict2: print('in') else: p 阅读全文
posted @ 2022-03-18 18:03 玫瑰少年 阅读(185) 评论(0) 推荐(0) 编辑
摘要: def has_duplicates2(list): birthd = list[:] for i in birthd: count = 0 for j in birthd: if i == j: count= count+1 if count > 1: print('true2') return 阅读全文
posted @ 2022-03-18 17:07 玫瑰少年 阅读(128) 评论(0) 推荐(0) 编辑
摘要: 1 def is_angram(word1,word2): 2 if len(word1) != len(word2): 3 return False 4 a = list(word1) 5 b = list(word2) 6 c = a[:] 7 for i in a: 8 if i in b: 阅读全文
posted @ 2022-03-17 23:20 玫瑰少年 阅读(157) 评论(0) 推荐(0) 编辑
摘要: def arc(t,angle,r): length = (pi*r)/180 for i in range(angle): fd(t,length) rt(t,1) bob.delay = 0.01 rt(t) fd(t,r) rt(t,180-angle) fd(t, r) arc(bob,16 阅读全文
posted @ 2022-03-16 11:40 玫瑰少年 阅读(90) 评论(0) 推荐(0) 编辑
摘要: 网易云听歌没问题,腾讯视频看剧也没问题?但是在浏览器上看视频蓝牙耳机老是关机,耳机开机再连还是继续关机? 解决方案Chrome在浏览器的网址内输入chrome://flags/(IE输入edge://flags/,其他浏览器应该也差不多这样),在flags界面的搜索框内搜索hardware-medi 阅读全文
posted @ 2021-04-24 09:26 玫瑰少年 阅读(815) 评论(0) 推荐(0) 编辑
摘要: 1 from wordcloud import WordCloud 2 import PIL.Image as image 3 import numpy as np 4 import jieba 5 6 7 # 分词 8 def trans_CN(text): 9 # 接收分词的字符串 10 wor 阅读全文
posted @ 2021-04-13 15:22 玫瑰少年 阅读(366) 评论(0) 推荐(0) 编辑
摘要: 破解完pycharm后,过了一段时间,又重新跳转到了需要我输入注册码的界面,百度以后在host配置文件里添加了 0.0.0.0 https://account.jetbrains.com:443 导致第二天打开pycharm时显示报错。 (if you already have a 64-bit J 阅读全文
posted @ 2021-04-09 16:34 玫瑰少年 阅读(3705) 评论(0) 推荐(0) 编辑
摘要: > 以下内容是我在学习https://blog.csdn.net/mingxiaod/article/details/85938251 教程时遇到不懂的问题自己查询并理解的笔记,由于sklearn版本更迭改动了原作者的代码,如有理解偏差欢迎指正。 1. np.linspace np.linspace 阅读全文
posted @ 2021-04-02 19:17 玫瑰少年 阅读(1251) 评论(0) 推荐(0) 编辑
摘要: 逗号“,”分隔各个维度,“:”表示各个维度内的切片,只有:表示取这个维度的全部值,举例说明如下 1 1.二维数组 2 3 X[:,0]取所有行的第0个数据,第二维下标位0的所有数据,第0列(从0开始) 4 5 X[:,1] 取所有行的第1个数据 6 7 X[:,1:]第一维全部取,即所有行,列上从第 阅读全文
posted @ 2021-04-02 17:14 玫瑰少年 阅读(726) 评论(0) 推荐(0) 编辑