質問編集履歴
1
書式の改善
title
CHANGED
File without changes
|
body
CHANGED
@@ -4,6 +4,12 @@
|
|
4
4
|
|
5
5
|
|
6
6
|
```python
|
7
|
+
!pip install matplotlib-venn
|
8
|
+
|
9
|
+
from matplotlib_venn import venn2
|
10
|
+
from matplotlib_venn import venn3
|
11
|
+
|
12
|
+
|
7
13
|
a = {1,2,3,4,5}
|
8
14
|
b = {2,3,4,5,6}
|
9
15
|
c = {4,5,6,7,8}
|
@@ -14,4 +20,4 @@
|
|
14
20
|
plt.title('A & B & C', fontsize=15)
|
15
21
|
```
|
16
22
|
|
17
|
-

|