Processes know nothing about each other.
It doesn't matter if they were identical or not. Each process allocates OS resources, so each process has its own resources, and they will not overlap. In fact, very often several similar Python processes are used for multiprocessing, when you have processing that can be executed in parallel and logically distributed for each process.
If they do not use a shared resource, such as a file, you have nothing to worry about.
source
share