Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
32 lines (26 loc) · 633 Bytes

File metadata and controls

32 lines (26 loc) · 633 Bytes
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import multiprocessing as mp
import threading as td
# coding=utf-8
'''
append_text = '\tThis is appended file'
my_file = open('my_file', 'a')# 'a'以增加内容的方式打开
my_file.write(append_text)
my_file.close()
'''
'''
file = open('my_file', 'r')
content = file.read()
print(content)
'''
# num = int(input())
# multiprocessing practice
# 定义一个被线程和进程调用的函数
def job(a,d):
print('aaaaa')
# 创建线程和进程,调动的函数放在target后面,参数放在args中
t1 = td.Thread(target=job, args=(1,2))
p1 = mp.Process(target=job, args=(1,2))
t1.start()
p1.start()
t1.join()
p1.join()
Morty Proxy This is a proxified and sanitized view of the page, visit original site.