一.join方法 (1)开一个主线程 from threading import Thread,currentThread import time def walk(): print('%s is running'%currentThread().getName()) time.sleep(2) print('%s is done'%currentThread().getName()) if __name__ == '__main__': # for i in range(10): p=Thre…
文件操作 python中常用于文件处理的模块有os,shutil等. 1 创建文件 文件的创建可以使用open()函数,如下创建一个test_file.txt的文件: >>> with open('/Users/xxx/test_file.txt','wt') as f_obj: ... print("This is the content from the test file---John",file=f_obj) ... >>> 执行完后,可以找…