Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Game of Life (neighbors)
#1
How to count the sum of all eight neighbors for this table?:
table = np.random.choice(stan, 100*100, p=[0.2, 0.8]).reshape(100, 100)
I started to create a Game of Life and I have problem with it.
At first I thought about something like that:
 for i in range(N):
    for j in range(N):
      
      S = table[i-1][j-1]+table[i][j-1]+table[i+1][j-1] +table[i-1][j]\
        +table[i+1][j]+table[i-1][j+1]+table[i][j+1]+table[i+1][j+1]
Reply


Messages In This Thread
Game of Life (neighbors) - by pawlo392 - Jun-08-2019, 07:52 PM
RE: Game of Life (neighbors) - by Windspar - Jun-08-2019, 09:01 PM
RE: Game of Life (neighbors) - by ThomasL - Jun-13-2019, 09:37 AM
RE: Game of Life (neighbors) - by ThomasL - Jun-14-2019, 09:06 AM
RE: Game of Life (neighbors) - by pawlo392 - Jun-20-2019, 02:32 PM
RE: Game of Life (neighbors) - by Windspar - Jun-20-2019, 03:05 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Game of life Elyur 2 2,092 Mar-30-2020, 10:54 AM
Last Post: Elyur
  [PyGame] Game Logic problem with a "The Game of Life" Replication Coda 2 3,146 Dec-24-2018, 09:26 AM
Last Post: Coda

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020