Skip to content

Commit 72da411

Browse files
authored
Update readme.md
1 parent 059849a commit 72da411

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

wx/TypeInfo/readme.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ friends = bot.friends()
3737
这次我只分析了前面的name,sex,province,city,signature
3838

3939
3. 数据分析
40-
3.1 总体分析
40+
- 3.1 总体分析
4141

4242

4343
```
@@ -46,8 +46,7 @@ def analyseTotal(friends):
4646
result = friends.stats_text()
4747
print(result)
4848
```
49-
50-
3.2 具体分析
49+
- 3.2 具体分析
5150
```
5251
def analyseConcrete(friends):
5352
text = friends.stats()
@@ -57,7 +56,7 @@ def analyseConcrete(friends):
5756
for friend in friends[1:]:
5857
print(friend.name,friend.sex,friend.province,friend.city,friend.signature)
5958
```
60-
3.3 对性别分析
59+
- 3.3 对性别分析
6160
```
6261
# 性别分析,饼状图显示
6362
def analyseSex(friends):
@@ -76,8 +75,7 @@ def analyseSex(friends):
7675
7776
plt.show()
7877
```
79-
80-
3.4 对签名进行分析
78+
- 3.4 对签名进行分析
8179
```
8280
# 分析个性签名
8381
def analyseSignature(friends):

0 commit comments

Comments
 (0)