摘要: Spyder是一个python的集成开发环境,其优点是模仿Matlab环境,可以方便的查看和修改数组取值。之前用过另一个开发环境PTVS(Python Tools for Visual Studio),顾名思义,是微软的Visual Studio的python开发环境,类似经典的vc,可以方便的设置 阅读全文
posted @ 2017-10-06 23:17 小刀lcy 阅读(196) 评论(0) 推荐(0) 编辑
摘要: 看程Sir的文章:http://www.jianshu.com/p/fc91fed8c77b?spm=5176.100239.blogcont61943.14.wTJh9Q 阅读全文
posted @ 2017-10-06 15:52 小刀lcy 阅读(120) 评论(0) 推荐(0) 编辑
摘要: 本人win10 64位系统,用的是3.5Python For standard Python installations, install matplotlib using pip: python -m pip install -U pip setuptools python -m pip inst 阅读全文
posted @ 2017-10-03 23:37 小刀lcy 阅读(252) 评论(0) 推荐(0) 编辑
摘要: 在C#中数组,ArrayList,List都能够存储一组对象,那么这三者到底有什么样的区别呢。 数组 数组在C#中最早出现的。在内存中是连续存储的,所以它的索引速度非常快,而且赋值与修改元素也很简单。 [csharp] view plain copy <span style="font-family 阅读全文
posted @ 2017-08-15 17:05 小刀lcy 阅读(384) 评论(0) 推荐(0) 编辑
摘要: 声明: 1、List<T> mList = new List<T>(); T为列表中元素类型,现在以string类型作为例子 E.g.:List<string> mList = new List<string>();2、List<T> testList =new List<T> (IEnumerab 阅读全文
posted @ 2017-08-15 16:47 小刀lcy 阅读(8608) 评论(1) 推荐(0) 编辑
摘要: With语句是什么? Python’s with statement provides a very convenient way of dealing with the situation where you have to do a setup and teardown to make some 阅读全文
posted @ 2017-08-14 12:05 小刀lcy 阅读(175) 评论(0) 推荐(0) 编辑