- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这可能是一个非常幼稚的问题。我试图通过以下方式比较两个字典的值:
distance = dictionary1[position] - dictionary2[position]
但它不起作用,它给了我dictionary1
的第一个值。
我也尝试过:
set distance = set(dictionary1[position]) - set(dictionary2[position])
但得到相同的结果。
知道两个字典中的值如何相减吗?
字典 1 和 2 就像:
dictionary1 = {'chr1': '3434351', 'chr10': '5329532', 'chr11': '2355620',
'chr12': '40841359', 'chr13': '101523938', 'chr14': '453255816',
'chr17': '491453323', 'chr18': '22361089', 'chr19': '34965774',
'chr2': '16025716', 'chr20': '295671539', 'chr21': '2067974'}
dictionary2 = {'chr1': '15845763', 'chr10': '186537818', 'chr11': '3715102',
'chr12': '1138647613', 'chr13': '123235062', 'chr14': '68159413',
'chr15': '51790735', 'chr16': '19324170', 'chr17': '78184979',
'chr18': '76968073', 'chr19': '37299170', 'chr2': '18329102',
'chr20': '31934245', 'chr22': '32679692'}
最佳答案
使用字典理解:
{ k:int(dic1[k]) - int(dic2[k]) for k in dic1 if k in dic2 }
或者对于 Python <2.7:
dict((k,int(dic1[k]) - int(dic2[k])) for k in dic1 if k in dic2)
关于python - python 两个字典相减,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9960133/
这个问题已经有答案了: Diff of two Dataframes (8 个回答) 已关闭 4 年前。 我有 2 个数据框(df_a 和 df_b),有 2 列:“动物”和“名称”。 在更大的数据框
如果我得到以下数字字符串,是否可以使用 LINQ 查询将这些数字一起加/减? string numbers = "1 + 1, 2 - 1, 3 + 3"; 所以我最终会得到这样的东西: 字符串数字
具有以下对象列表: public class Example { public string Local { get; set; } public string Type { get;
已关闭。此问题需要 debugging details 。目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and the
#include #include float sum (float *A, int len) // sum of table of floats { float ss = 0.0;
我正在阅读这篇博文:https://nee.lv/2021/02/28/How-I-cut-GTA-Online-loading-times-by-70/ 我很困惑: size_t len = end
我正在阅读这篇博文:https://nee.lv/2021/02/28/How-I-cut-GTA-Online-loading-times-by-70/ 我很困惑: size_t len = end
这个问题已经有答案了: Pointer Arithmetic In C (2 个回答) Pointer subtraction confusion (8 个回答) 已关闭 4 年前。 int vect
我知道这可能是个愚蠢的问题,但我遇到了一些麻烦,我很惭愧,但我真的不知道如何做到。我想加减两个以整数形式给出的“小时”。 #include #include #include using nam
大家好 StackOverflow.. 这个网站相当新,但我得到了很好的反馈!所以首先要感谢大家! 我想做的是类似于wonga的事情 https://www.wonga.com/ 但是随着值的协同工作
我是一名优秀的程序员,十分优秀!