例如,有两个类似的代码:
第一个是:
for chrom in bins:
for a_bin in bins[chrom]:
for pos in a_bin:
pos = pos+100
第二个是:
for chrom in bins:
for a_bin in bins[chrom]:
for pos in a_bin:
if chrom=="chr1":
pos = pos*100
我想知道是否有办法重构循环,这样我就不需要重复编写具有相同结构的代码..
有人对此有想法吗?