Computer Science, asked by Anonymous, 11 months ago

Lifè of a coder... be likee...:
.
.
nevermind answer this:
write a numpy program to create a 8x8 matrix and fill it with a checkboard pattern:
[[0 1 0 1 0 1 0 1]
[0 1 0 1 0 1 0 1]
[0 1 0 1 0 1 0 1]
[0 1 0 1 0 1 0 1]
[0 1 0 1 0 1 0 1]
[0 1 0 1 0 1 0 1]
[0 1 0 1 0 1 0 1]
[0 1 0 1 0 1 0 1]]​

Attachments:

Answers

Answered by mahek1175
4

Answer:

import numpy as np

x = np.ones((3,3))

print("Checkerboard pattern:")

x = np.zeros((8,8),dtype=int)

x[1::2,::2] = 1

x[::2,1::2] = 1

print(x)

Answered by Anonymous
4

<body bgcolor ="r"> <font color =pink>import numpy as np

x = np.ones((3,3))

print("Checkerboard pattern:")

x = np.zeros((8,8),dtype=int)

x[1::2,::2] = 1

x[::2,1::2] = 1

print(x)

Similar questions