如何使用随机选择的字母网格对二进制网格进行混洗

时间:2018-09-17 05:47:07

标签: python binary shuffle

[randomly generated 4*4 character grid[1]

如何使用python中上面给出的随机选择的字母网格对下面给出的二进制网格的位置进行混洗?

4*4 binary grid

获取这些网格的python代码是

import itertools
n = 4
lst = list(itertools.product([1, 0], repeat=n))
print('The 4*4 Binary grid is : ')
print('')
for row in range(4):
    for col in range(4):
        print(lst.pop(), end=' ')
    print()
print('')
print('The 4*4 DNA grid is : ')
print('')
perm = list(itertools.product('CTGA', repeat=2))
for row in range(4):
    for col in range(4):
        print(perm.pop(), end=' ')
    print()

0 个答案:

没有答案