Update game_of_life.py (#8703)

Rectify spelling in docstring
This commit is contained in:
Pronoy Mandal 2023-05-10 15:04:36 +05:30 committed by GitHub
parent 7310514509
commit 91cc3a240f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -34,7 +34,7 @@ import numpy as np
from matplotlib import pyplot as plt
from matplotlib.colors import ListedColormap
usage_doc = "Usage of script: script_nama <size_of_canvas:int>"
usage_doc = "Usage of script: script_name <size_of_canvas:int>"
choice = [0] * 100 + [1] * 10
random.shuffle(choice)