线程与进程

Python:使用threading模块实现多线程  python thread之daemon   python thread之join

浅析 Java Thread.join()

运行外部命令

1. os.system('ls -l')
2. import subprocess
subprocess.call(['ls', '-1'])
subprocess.call('echo $HOME', shell=True) #使用一个中间shell意味着运行命令前会先处理命令串中的变量,glob模式,以及其他特殊shell特性。


你可能感兴趣的:(线程与进程)