See below where i am having trouble, i want to "return what the for return" let's say by this way, but i have no idea how to do it.
def Matriz(m, n):
return for i in range(0, m):
for j in range(0, n):
print(".", end=' ')
print("\n")
I am not sure it this is possible, i would appreciate any type to how to make this work. The idea is to return, as you can see, a "lattice" of points like this
. . .
. . .
. . .
every time we ask for def, so that we don't need to type for in all place.