摘要: #include<iostream> using namespace std; void main() { char instr[100]; cout<<"请输入一行字符串:"; cin>>instr; for(int i=0;i<strlen(instr);i++){ if (instr[i]>= 阅读全文
posted @ 2020-02-16 14:52 Andhui 阅读(2728) 评论(0) 推荐(0) 编辑
摘要: // 5-1 找数组最大值及下标#include<iostream> using namespace std; int main() { int a[10]={17,85,67,83,49,26,92,38,42}; int max,num=0; max=a[0]; for(int i=0;i<10 阅读全文
posted @ 2020-02-16 13:42 Andhui 阅读(1520) 评论(0) 推荐(0) 编辑
摘要: //3.3.1作业-编程实现输入一个整数,判断其能否被3,5,7整除 while(int i=1){ //用while语句实现重复输入 int a; cout<<"请输入一个整数:"; cin>>a; int c1=a%3==0; int c2=a%5==0; int c3=a%7==0; //co 阅读全文
posted @ 2020-02-08 13:55 Andhui 阅读(991) 评论(1) 推荐(0) 编辑
摘要: C++是C语言的继承,它既可以进行C语言的过程化程序设计,又可以进行以抽象数据类型为特点的基于对象的程序设计,还可以进行以继承和多态为特点的面向对象的程序设计。C++擅长面向对象程序设计的同时,还可以进行基于过程的程序设计,因而C++就适应的问题规模而论,大小由之。C++不仅拥有计算机高效运行的实用 阅读全文
posted @ 2020-02-08 13:51 Andhui 阅读(764) 评论(0) 推荐(0) 编辑
摘要: import jieba fp1=r'D:/python/a.txt' outph=r'D:/python/out.txt' f=open(fp1,'r',encoding='utf-8') txt=f.read().strip() f.close() words=jieba.lcut(txt) f=open(outph,'w',encoding='utf-8') for word in word 阅读全文
posted @ 2019-08-31 18:31 Andhui 阅读(3730) 评论(0) 推荐(0) 编辑
摘要: ''' 练习一:编写名为collatz(number)的函数;实现的功能:参数为偶数时,打印number// 2;参数为奇数时,打印3*number + 1 ''' def collatz(number): ## if number%2==0: ## print(number//2) ## else: ## print(3*number+1) ... 阅读全文
posted @ 2019-08-31 18:26 Andhui 阅读(596) 评论(0) 推荐(0) 编辑
摘要: import jieba #第一题 txt='Python是最有意思的编程语言' words=jieba.lcut(txt) #精确分词 words_all=jieba.lcut(txt,cut_all=True) #全分词 words_sh=jieba.lcut_for_search(txt) #搜索分词 print(words) print(words_all) print(word... 阅读全文
posted @ 2019-08-31 15:03 Andhui 阅读(637) 评论(0) 推荐(0) 编辑
摘要: 一般Python for语句前不加语句,但我在机器学习实战中看到了这两条语句: 多方研究和询问,得到如下解释: 语句featList = [example[i] for example in dataSet]作用为: 将dataSet中的数据按行依次放入example中,然后取得example中的e 阅读全文
posted @ 2019-08-31 09:40 Andhui 阅读(20025) 评论(0) 推荐(0) 编辑
摘要: Python2.6 开始,新增了一种格式化字符串的函数 str.format(),它增强了字符串格式化的功能。 基本语法是通过 {} 和 : 来代替以前的 % 。 format 函数可以接受不限个参数,位置可以不按顺序。 实例 >>>"{} {}".format("hello", "world") 阅读全文
posted @ 2019-08-31 09:10 Andhui 阅读(2853) 评论(0) 推荐(0) 编辑
摘要: 使用python对列表(list)进行排序,说简单也简单,说复杂也复杂,我一开始学的时候也搞不懂在说什么,只能搜索一些英文文章看看讲解,现在积累了一些经验,写在这里跟大家分享,我们通过例子来详细解释一下函数sorted的具体用法: 先创建一个列表a 直接使用sorted方法,返回一个列表就是排序好的 阅读全文
posted @ 2019-08-30 11:09 Andhui 阅读(21155) 评论(0) 推荐(3) 编辑