There are some statements in the init.py file of python DEAP package, such as:
from .crossover import *
Is this means import all function from crossover.py? So why there is a "." in front of crossover. It would be so much appreciated that if somebody could help me understand the meaning of .
and *
in the statement.