938664978
938664978
全部文章
python
AI(18)
algorithm(18)
C(6)
computer-vision(15)
cuda(2)
database(1)
fortran(1)
hardware(3)
java(1)
leetcode(39)
MathModeling(19)
matlab(5)
other(8)
robotics(13)
web-development(4)
未归档(5)
归档
标签
去牛客网
登录
/
注册
938664978的博客
全部文章
/ python
(共68篇)
[note]Linear Programming
# solves *bounded* LPs of the form: # max cx # sub to: Ax <= b from sympy import * from itertools import combinations #...
2020-07-14
0
525
Python 中 input()用法 以及与raw_input() 的区别
input(xxxxxx) 其中xxxxxx是str 类,所以当你输入input(' please input a number: ') 时,屏幕会弹出 “please input a number:" input('please input a number:')其输出为: p...
2020-07-14
0
691
[leetcode] Remove Duplicates from Sorted Array python
problem: Given a sorted array, remove the duplicates in place such that each element appear only once and return the new length. Do not allo...
2020-07-14
0
484
[leetcode]Reverse Words in a String
problem: Given an input string, reverse the string word by word. For example, Given s = "the sky is blue", return "blue is sky th...
2020-07-14
0
480
python 中的内置函数 与 类
python这种语言的变量命名规则有些奇葩,我相信大家已经遇到过了,比如:__future__。这种特殊的形式表明,这个 变量有特殊的意义,你不可以在自己的代码中创造这类变量。 1.__init__() 构造函数 类似于c++,java等面向对象语言,python 在类的定义中也有构造函数,这...
2020-07-14
0
677
Python 生成器 generator
生成器给人的感觉就是用非正常的函数语言定义的迭代器。 任何函数,只要有yield语句,都是迭代器。 例如: nested_list = [[1,2],[3,4],[5]] def aGen(nested_list): for i in nested_list: f...
2020-07-14
0
507
利用xlrd处理Excel文件
1 2 3 4 5 6 7 8 ...
2020-07-14
0
507
利用python的csv库处理csv文件
.csv 文件是我们日常生活中经常遇到的文件类型。 一般来说,处理csv文件,直接利用Excel就可以了。但是,如果csv文件特别大,直接用Excel把文件打开的话很占内存。 这时候,我们的python就可以排上用场了。 首先,我们先看看利用csv.reader()处理csv文件 ...
2020-07-14
0
640
Numpy 基础
Numpy 是广泛应用于学术,工业的python数值计算库,其底层源码由C,Fortran写成。 由于python语言灵活,简洁,而且在数值计算中有numpy,scipy,sympy这类数值计算库的依托,使得快速开发 数值算法十分简便。所以python在数值计算中应用十分广泛,而numpy更是p...
2020-07-14
0
558
SciPy 基础
SciPy以NumPy为基础,提供了应用更加广泛的科学计算工具。 其在以下方面有着优秀的函数库: 1.线性代数 2.数值积分 3.插值 4.优化 5.随机数生成 6.信号处理 7.图像处理 8.其他 与NumPy一样,SciPy有着稳定,成熟,且应用广泛的数值运算库。 许多Sc...
2020-07-14
0
498
首页
上一页
1
2
3
4
5
6
7
下一页
末页