I am making a simple game in python and I want to display all the numbers in the beginning as stars like this:
* * *
* * *
* * *
Then after you choose a position (for example 2,3) it will show you what number in that position.
So in my class I want to initialize these points:
def __init__(self, val):
self.val = val
# I want to set the created number to be displayed as *