如何用嵌套循环制作棋盘图案?

时间:2015-11-11 02:02:25

标签: python loops for-loop nested

我需要制作一个如下所示的模式:

1 0 1 0 1 0 1 0

0 1 0 1 0 1 0 1

1 0 1 0 1 0 1 0

0 1 0 1 0 1 0 1

1 0 1 0 1 0 1 0

0 1 0 1 0 1 0 1

1 0 1 0 1 0 1 0

0 1 0 1 0 1 0 1

到目前为止,我只能与这些对角线形成对角线,但我需要一些帮助才能理解如何实现这一目标。

到目前为止我的代码:

dimension = int(input('Enter dimension of board: '))

if dimension < 2:    
    print('Invalid input')    
else:
    for r in range(dimension):
        for c in range(dimension):
            print(int(c == r), end=' ')
        print()

6 个答案:

答案 0 :(得分:2)

(c + r + 1) % 2应该起作用而不是int(c==r)

答案 1 :(得分:1)

这应该可以让你到达目的地。

for r in range(dimension):
    for c in range(dimension):
        print(int((c + r + 1) % 2), end=' ')
    print()

答案 2 :(得分:0)

 _initEvents: function () {

            var self = this;
            this.$trigger.on('click.dlmenu', function () {

                if (self.open) {
                    self._closeMenu();
                }
                else {
                    self._openMenu();
                }
                return false;

            });

答案 3 :(得分:0)

这是balabhi技术的变体。它使用嵌套列表推导来构造偶数行和奇数行,然后使用Shape方法将每行的单元格连接成一个字符串。 str.join函数返回一个行字符串列表,这些行字符串连接成一个字符串,以便使用另一个make_board调用进行打印。

.join

<强>输出

def make_board(side):
    r = range(side)
    rows = [' '.join(['01'[(i + p) % 2] for i in r]) for p in (1, 0)]
    return [rows[i % 2] for i in r]

# Test
for i in range(0, 9):
    board = make_board(i)
    print('{0}:\n{1}\n'.format(i, '\n'.join(board)))

答案 4 :(得分:0)

我知道,这可能有点迟了,但这是一个非常通用的同时快速的解决方案:

  1 import numpy as np
  2 import matplotlib.pyplot as plt
  3 import time
  4 from PIL import Image
  5 import os
  6
  7 def divmod_max_into(div_mod):
  8     if div_mod[1] > 0:
  9         return div_mod[0] + 1
 10     else:
 11         return div_mod[0]
 12 def create_chessboard(dim_x, dim_y, cube_size):
 13     start = time.time()
 14     light_grey = 230
 15     dark_grey = 90
 16     divmod_x_cube = divmod(dim_x, cube_size*2)
 17     divmod_y_cube = divmod(dim_y, cube_size*2)
 18     large_cube = np.full([cube_size*2, cube_size*2], False)
 19     large_cube[:cube_size, :cube_size] = True
 20     large_output = np.tile(large_cube, (divmod_max_into(divmod_x_cube), divmod_max_into(divmod_y_cube)))
 21     large_output = np.transpose(large_output) + large_output == 2
 23     output = np.full(large_output.shape, dark_grey, dtype=np.uint8)
 24     output[large_output] = 230
 25     print("Execution took {:.6f} seconds!".format(time.time()-start))
 26     return output[:dim_x, :dim_y]
 27
 28 Image.fromarray(create_chessboard(5000, 5000, 3)).save(os.path.join(os.path.dirname(os.path.realpath(__file__)), 'out.tif'))

您还可以定义应重复的多维数据集的大小。在我的电脑上创建5000x5000阵列大约需要0.74秒。

如果不清楚,请随意提问。

答案 5 :(得分:-1)

这将为您提供所需的电路板输出:

def printBoard(dimensions):
    for row in range(dimensions**2):
        if row % dimensions == 0 and row != 0:
            print()
            print((row + 1) % 2, end=' ')
        else:
            print((row + 1) % 2, end=' ')