
python
文章平均质量分 51
qingchn
这个作者很懒,什么都没留下…
展开
-
python中标示符命名规则
python中变量的命令,成为标识符,这个和Linux shell差别很大在shell中变量的命名规则比较简单,引用变量的时候 使用$作为前缀如:a = listecho $a而在python中,变量的命名和引用遵守一下规则:1,第一个字符必须是字母或者下划线(_)2,剩下的字符可以是字母和数字或下划线3,大小写敏感可以看到python的命名规则基本上继承了C语言的风格。原创 2012-12-05 13:14:13 · 1014 阅读 · 0 评论 -
python检查标示符一例
在python中变量的名字,被定义为标识符,而标识符如何命名,则成为,命名空间。一下python 脚本,用来检查标识符的命名规则#!/usr/bin/env pythonimport stringimport keywordpy_keyword = keyword.kwlistalphas = string.letters + '_'nums = string.digits原创 2012-12-05 13:06:47 · 601 阅读 · 0 评论 -
python 变量拼写检查一例
#!/usr/bin/env pythonimport stringalphas = string.letters + '_'nums = string.digitsprint 'Welcome to the identifier Checker v1.0'print 'Testees must be at least 2 chars long.'myInput = raw_i原创 2012-11-22 15:09:30 · 727 阅读 · 0 评论 -
Python异常初识
本文作为自己的学习笔记,已尽力详细描述和准确,难免会出现错误,所以这是一个beta版本。首先什么是异常,在python或者程序中,由于语法,逻辑或者系统的错误而导致程序出现错误无法执行,而这个错误就是异常。异常分为两个阶段:1,引起异常发生的错误2,检测(也就是采取措施)阶段python中的异常分为很多种,常见的有如下异常:1,NameError>>> fooT原创 2013-01-08 13:28:03 · 612 阅读 · 0 评论 -
Linux ln python
最近在线上测试salt,但是官方的要求Python的版本为2.6以上,但是线上python安装了2.4的版本所以需要使用ln 连接新的python版本首先查看python的链接 ls -lh /usr/bin/ |grep python-rwxr-xr-x 2 root root 4.7K Jan 9 19:48 pythonlrwxrwxrwx 1 root root原创 2013-05-22 13:33:56 · 2509 阅读 · 0 评论 -
python startswith and endswith
在python 中,认识两个函数startswith()函数 和ednswith()函数,用来判断文本结尾和开头字符的。startswith()函数#!/usr/local/bin/env pythontext = 'Hello world'print text.startswith('H')print text.startswith('h')print text.star原创 2013-10-18 12:23:29 · 1457 阅读 · 0 评论 -
python map ,reduce filter内置函数使用说明
一:mapmap(...) map(function, sequence[, sequence, ...]) -> list说明: 对sequence中的item依次执行function(item),执行结果输出为list。例子:>>> map(str, range(5)) #对range(5)各项进行str操作['0', '1'转载 2014-02-08 12:53:44 · 740 阅读 · 0 评论 -
Python @property
1,最近在看Python相关内容,先来看一段代码,里面涉及了类,类属性,实例,装饰器。代码如下:class Student(object): def __init__(self, name, score): self.name = name self.__score = score @property def score(self):原创 2015-07-27 13:08:11 · 529 阅读 · 0 评论 -
python class __slots__
1,由于Python是动态语言,任何实例在运行过程中,都可以动态地添加属性,python中通过slots 来限制添加属性。 如下代码:class Student(objetc): __slots__ = ('name', 'gender', 'score') def __init__(self, name, gender, score): self.name = n原创 2015-07-27 14:00:16 · 720 阅读 · 0 评论