摘要: 1.str.capitalize返回首字母大写,其他字母小写的字符串2.str.casefold字符串转换成小写,用于不区分大小写的字符串比较3.str.center返回指定长度的字符串,字符串内容居中,并使用指定字符填充4.str.count返回子字符串在字符串中出现的次数5.str.encode对字符串进行编码,返回字节对象6.str.endswith判断字符串是否以指定的后缀结尾7.str.... 阅读全文
posted @ 2016-01-21 20:19 iAthena 阅读(243) 评论(0) 推荐(0) 编辑
摘要: In [45]: str = "this is string example....wow!!!"In [46]: str.title()Out[46]: 'This Is String Example....Wow!!!'In [47]: str.title().istitle()Out[47]: True来自为知笔记(Wiz) 阅读全文
posted @ 2016-01-21 20:06 iAthena 阅读(2370) 评论(0) 推荐(0) 编辑
摘要: translate()以下实例展示了 translate()函数的使用方法:#!/usr/bin/pythonfrom string import maketrans # 引用 maketrans 函数。 intab = "aeiou" outtab = "12345" trantab = maketrans(intab, outtab) str = "this is string exa... 阅读全文
posted @ 2016-01-21 20:04 iAthena 阅读(451) 评论(0) 推荐(0) 编辑
摘要: python Lambda, filter, reduce and map1. lambda The lambda operator or lambda function is a way to create small anonymous functions , i.e. functions without a name. 可以方便的创造一个函数。比如 123def add(x,y): ... 阅读全文
posted @ 2016-01-14 11:09 iAthena 阅读(234) 评论(0) 推荐(0) 编辑
摘要: 数据挖掘十大经典算法来自:莫等闲 - CSDN博客链接:http://blog.csdn.net/aladdina/article/details/4141177文章的摘要来源全部转载自网络搜索,百度百科内容最多,少量来自中文维基百科以及其他网页。国际权威的学术组织the IEEE International Conference on Data Mining (ICDM) 2006年12月评选出... 阅读全文
posted @ 2016-01-12 10:15 iAthena 阅读(292) 评论(0) 推荐(0) 编辑
摘要: 一、Linux目录结构你想知道为什么某些程序位于/bin下,或者/sbin,或者/usr/bin,或/usr/sbin目录下吗?例如,less命令位于/usr/bin目录下。为什么没在/bin中,或/sbin,或/usr/sbin目录中?所有这些目录之间有什么不同?在这篇文章中,让我们回顾一下Linux的文件系统结构,并理解各上层目录的含义。蓝色:表示目录青色:表示链接黑色:表示文件1、/- 根每... 阅读全文
posted @ 2015-12-22 15:09 iAthena 阅读(253) 评论(0) 推荐(0) 编辑
摘要: BCP每个参数的具体含义。 · -m max_errors: 规定最大允许的可以操作出错的个数。缺省是10,也就是说,如果在bcp操作中,碰到一个错,如果还在允许出错个数范围内,它还会继续进行bcp操作。· -f format_file: 给出格式文件.format_file表示格式文件名。这个选项依赖于上述的动作,如果使用的是in或out,format_file... 阅读全文
posted @ 2015-12-18 11:08 iAthena 阅读(316) 评论(0) 推荐(0) 编辑
摘要: 16.0 SP04 > Reference: Statements and Options > SQL StatementsDefines an event and its associated handler for automating predefined actions. Also defines scheduled actions.Quick Links:Go to Parameters... 阅读全文
posted @ 2015-12-18 01:03 iAthena 阅读(518) 评论(0) 推荐(0) 编辑
摘要: python eval 【转】eval(str [,globals [,locals ]])函数将字符串str当成有效Python表达式来求值,并返回计算结果。同样地, exec语句将字符串str当成有效Python代码来执行.提供给exec的代码的名称空间和exec语句的名称空间相同.最后,execfile(filename [,globals [,locals ]])函数可以用来执行一个文件,... 阅读全文
posted @ 2015-09-28 17:34 iAthena 阅读(279) 评论(0) 推荐(0) 编辑
摘要: nohup 命令用途:不挂断地运行命令。语法:nohup Command [ Arg … ] [ & ]描述:nohup 命令运行由 Command 参数和任何相关的 Arg 参数指定的命令,忽略所有挂断(SIGHUP)信号。在注销后使用 nohup 命令运行后台中的程序。要运行后台中的 nohup 命令,添加 & ( 表示”and”的符号)到命令的尾部。无论是否将 nohup 命令的输出重定向到... 阅读全文
posted @ 2015-09-23 15:11 iAthena 阅读(349) 评论(0) 推荐(0) 编辑