I\'m trying to understand the output from this Python 2.7.5 example script:
import time from multiprocessing import Pool print(time.strftime(\'%Y-%m-%d %H:%
Multiprocessing needs to import your script in each subprocess in order to use the go() function. When your script is imported, it prints the date. If you only want something to run in the main script, put it in the if __name__ == '__main__' block.
go()
if __name__ == '__main__'