python笔记(1) 关于我们应不应该继续学习python


Posted in Python onOctober 24, 2012

以前面试的时候会被问到,linux熟不熟呀?对于这种问题:我总会尴尬地回答,“额..了解一点”。

然而,我大学毕业的时候,连linux的虚拟机都没装过,更别提系统熟不熟悉了。虽然我了解一点这个系统可以完全通过命令来操作。后来工作了,有时候写点代码,svn提交上去,服务器是Linux的,自己也是在windows上跑跑客户端。记得有个项目,要求用shell来启动java程序,你知道那时候我是怎么做的吗?把他们的shell拿来,问哪几个地方要改的,然后改下要启动java类的路径。ok了,完全不去理解里面的意思。到最后又一次面试的时候,不得不坦白:不是太了解Linux命令。

有人可能会说:Linux命令没什么难啊。花几天时间就好了。现在的我也会这么和完全不懂Linux的朋友这么说。可是如果我不跨出学习命令的第一步。我未来的很长一段时间都不得不在面试的时候再一次尴尬。

回到正题,我们到底该不该去学习现在看来没什么用而确实是不错的东西呢?

我的回答是:如果你的确是有余力,并愿意向自己投资的话,我觉得是有必要的。

1,这种额外的学习会让你的周末变得充实。

2,当学习到一定程度的时候,会对事物有新的看法。

3,面试的时候,你多了一块筹码。

4,有一个理论:学习的越多,知道自己不知道的越多。(知识面越广,你所看到的世界就越大!)

就像情歌里唱的那样:”我们一直都忘了要到一座桥,到对方心里瞧一瞧“,我想我们是不是也忘了去到一座桥,去别的地方瞧一瞧呢!呵呵

所以让我们一起进入PYTHON世界吧!

python笔记(1)

关于Python,如果你要学习,建议大家查看一下网站:(因为本人也是刚刚决定收集点零碎时间来学习下它,推荐可能并不是最好的)

http://book.huihoo.com/dive-into-python/5.4_zh-cn/html/toc/index.html

《Dive to python》
http://docs.python.org/
http://woodpecker.org.cn/
http://code.google.com/intl/zh-CN/edu/languages/google-python-class/introduction.html

刚接触python我觉得很棒,因为安装个软件,马上就能来个HelloWorld!
也许我们早就过了兴奋的年纪,事实上,我是想说python绝对是让你放轻松学习的语言。

1,函数声明用 def

def buildConnectionString(params):

2,导入模块:import

import odbchelper

在导入模块时是python编译器去自己的环境变量制定的路径路去找这个模块,如果要导入的模块是自定义的路径下,就必须把这个路径先放进环境变量中去。

import sys 
sys.path.append('/my/new/path')

3,if_else语句:(python通过缩进来控制代码块,代替了java中的“{}”)
if n > 1: 
return n * fib(n - 1) 
else: 
print 'end of the line' 
return 1

4,内置数据类型List:
List li = ["a", "b", "mpilgrim", "z", "example"]

用“[]”包起来。

A.用for var in list,可以遍历一个list。在遍历的时候不要试着增加和删除元素哦!

squares = [1, 4, 9, 16] 
sum = 0 
for num in squares: 
sum += num 
print sum ## 30

B.用in来判断一个元素是否在list中:
list = ['larry', 'curly', 'moe'] 
if 'curly' in list: 
print 'yay

C.list其他的方法:
list.append(elem) -- adds a single element to the end of the list. Common error: does not return the new list, just modifies the original. 
list.insert(index, elem) -- inserts the element at the given index, shifting elements to the right. 
list.extend(list2) adds the elements in list2 to the end of the list. Using + or += on a list is similar to using extend(). 
list.index(elem) -- searches for the given element from the start of the list and returns its index. Throws a ValueError if the element does not appear (use "in" to check without a ValueError). 
list.remove(elem) -- searches for the first instance of the given element and removes it (throws ValueError if not present) 
list.sort() -- sorts the list in place (does not return it). (The sorted() function shown below is preferred.) 
list.reverse() -- reverses the list in place (does not return it) 
list.pop(index) -- removes and returns the element at the given index. Returns the rightmost element if index is omitted (roughly the opposite of append()).

D.其他关于list的例子:
 list = ['larry', 'curly', 'moe'] 
list.append('shemp') ## append elem at end 
list.insert(0, 'xxx') ## insert elem at index 0 
list.extend(['yyy', 'zzz']) ## add list of elems at end 
print list ## ['xxx', 'larry', 'curly', 'moe', 'shemp', 'yyy', 'zzz'] 
print list.index('curly') ## 2 list.remove('curly') ## search and remove that element 
list.pop(1) ## removes and returns 'larry' 
print list ## ['xxx', 'moe', 'shemp', 'yyy', 'zzz']

本文纯粹的目的是想让更多的人去学习他们可能因各种借口拒绝学习的东西。
希望你能被我我的鼓动,而有所行动哦!
Python 相关文章推荐
python时间整形转标准格式的示例分享
Feb 14 Python
Python二维码生成库qrcode安装和使用示例
Dec 16 Python
python概率计算器实例分析
Mar 25 Python
解决Python 爬虫URL中存在中文或特殊符号无法请求的问题
May 11 Python
浅谈python中对于json写入txt文件的编码问题
Jun 07 Python
对Python3.6 IDLE常用快捷键介绍
Jul 16 Python
解决PyCharm的Python.exe已经停止工作的问题
Nov 29 Python
python实现FTP文件传输的方法(服务器端和客户端)
Mar 20 Python
总结Pyinstaller的坑及终极解决方法(小结)
Sep 21 Python
详解Python Celery和RabbitMQ实战教程
Jan 20 Python
python入门之算法学习
Apr 22 Python
OpenCV-Python 实现两张图片自动拼接成全景图
Jun 11 Python
Python的一些用法分享
Oct 07 #Python
Python天气预报采集器实现代码(网页爬虫)
Oct 07 #Python
python代码检查工具pylint 让你的python更规范
Sep 05 #Python
python 基础学习第二弹 类属性和实例属性
Aug 27 #Python
用Python写的图片蜘蛛人代码
Aug 27 #Python
Python模块学习 filecmp 文件比较
Aug 27 #Python
Python模块学习 datetime介绍
Aug 27 #Python
You might like
来自phpguru得Php Cache类源码
2010/04/15 PHP
php中\r \r\n \t的区别示例介绍
2014/02/08 PHP
PHP文件锁函数flock()详细介绍
2014/11/18 PHP
php中mt_rand()随机数函数用法
2014/11/24 PHP
php parse_str() 函数的定义和用法
2016/05/23 PHP
PHP类和对象相关系统函数与运算符小结
2016/09/28 PHP
几款极品的javascript压缩混淆工具
2007/05/16 Javascript
JavaScript 题型问答有答案参考
2010/02/17 Javascript
JavaScript 嵌套函数指向this对象错误的解决方法
2010/03/15 Javascript
自动最大化窗口的Javascript代码
2013/05/22 Javascript
Grunt入门教程(自动任务运行器)
2015/08/06 Javascript
跟我学习javascript的最新标准ES6
2015/11/20 Javascript
JS控制文本域只读或可写属性的方法
2016/06/24 Javascript
AngularJS中$http服务常用的应用及参数
2016/08/22 Javascript
常用js,css文件统一加载方法(推荐) 并在加载之后调用回调函数
2016/09/23 Javascript
JS正则替换掉小括号及内容的方法
2016/11/29 Javascript
jQuery实用密码强度检测
2017/03/02 Javascript
微信小程序城市定位的实现实例(获取当前所在国家城市信息)
2017/05/17 Javascript
JavaScript门面模式详解
2017/10/19 Javascript
vue2.0 自定义组件的方法(vue组件的封装)
2018/06/05 Javascript
如何封装了一个vue移动端下拉加载下一页数据的组件
2019/01/06 Javascript
在Python中处理字符串之isdigit()方法的使用
2015/05/18 Python
numpy中loadtxt 的用法详解
2018/08/03 Python
python文本数据处理学习笔记详解
2019/06/17 Python
python求加权平均值的实例(附纯python写法)
2019/08/22 Python
Django-simple-captcha验证码包使用方法详解
2020/11/28 Python
浅析Python模块之间的相互引用问题
2021/02/26 Python
纯CSS3实现给头像加个光芒四射且旋转的背景动画效果
2014/05/07 HTML / CSS
德国百年厨具品牌WMF美国站:WMF美国
2016/09/12 全球购物
英国婴儿产品专家:Samuel Johnston
2020/04/20 全球购物
泰国最新活动和优惠:Megatix
2020/05/07 全球购物
区三好学生主要事迹
2014/01/30 职场文书
机关道德讲堂实施方案
2014/03/15 职场文书
个人师德师风自我剖析材料
2014/09/29 职场文书
校园会短篇的广播稿
2014/10/21 职场文书
2016年社区植树节活动总结
2016/03/16 职场文书