
小程序
Bil!
一个自学的IT菜鸟。
展开
-
微信小程序取消每次保存都自动编译
原创 2021-09-17 19:38:21 · 1025 阅读 · 0 评论 -
python 统计英语试卷词频
效果:操作重点:1.在网上找历年的真题:把这些真题拷贝到 txt 文件上。读模式,用的是read() 。它得到的结果是子符串类型的。strs = open("86_17_1_2.txt","rt").read()2.整理读到的字符串,并转化为列表。for k in set([i for i in strs if i.isalpha() == False]): #只留下字符 strs = strs.replace(k,' ') #其他字符均认为是单词分隔符...原创 2020-07-22 14:46:24 · 493 阅读 · 0 评论 -
学生信息管理系统(C语言)
#include"stdio.h"#include"stdlib.h"#include"string.h"#define student_n 100typedef struct student{ int score[10]; char name[20]; int num; int sum;}STUDENT;STUDENT stud[student_n];stati...原创 2019-11-09 16:12:33 · 935 阅读 · 0 评论