摘要:
百度脑图:https://naotu.baidu.com/home 盘搜搜:https://www.pansoso.com/ 变量命名网站:https://unbug.github.io/codelf/ 各种网站导航:http://1nami.com/ 手写公式转math:http://webdem 阅读全文
摘要:
我想按照正态分布使用python从列表中选择一个元素。我有一个清单,例如 alist = ['an', 'am', 'apple', 'cool', 'why'] 例如,根据正态分布的概率密度函数(PDF),给定列表中的第3个元素应该被选择为最大概率。 from random import norm 阅读全文
摘要:
______________________2023年05月23日17:23:32—————————————————————————————————————— import os paths = ['/path/to/file1.txt', '/path/to/file2.txt', '/path/ 阅读全文
摘要:
写脚本过程中用到了需要随机一段字符串的操作,查了一下资料,对于random.sample的用法,多用于截取列表的指定长度的随机数,但是不会改变列表本身的排序: list =[0,1,2,3,4] rs = random.sample(list,2) print(rs) print(list) 》》》 阅读全文