Hello dear friends. I can import from subdirectories so: import
subdir/some_module , or so: import subdir.some_module I can import from parent
directory so: import ../some_module I can import from parent directory and it's
subdirectory so: import ../subdir_of_parent/some_module But I can't use points
there: import ..subdir_of_parent.some_module >> error Is it really one way to
do this (while to import from subdir we can with two ways)? (if yes, why not to
add ways with points only andor with slashes only?) Thank you.