Python脚本基础

Python脚本基础

  • 空间

python十分钟入门: http://www.kuqin.com/language/20120228/318493.html 


特殊,随时要注意的地方:

1、 Python代码块使用空格或制表符缩进的方式分隔代码;仅有31个保留字,而且没有分号、begin、end等标记。

2、接受命令行输入:

import sys;

print sys.argv[0];


数据结构:

变量,无需定义,赋值即定义与声明。未赋值的变量实际为空。

list_line = ["I","Love","U"]; #数组


字符串操作:

所有的字符串,实际上是str的类。查看str所有属性的方法:

&python

>>help(str)

常用函数:

1、python的string的操作函数:http://www.cnblogs.com/zhangfei/archive/2013/06/02/3114239.html

      Python 字符串操作:http://www.cnblogs.com/huangcong/archive/2011/08/29/2158268.html

2、数组的使用:http://blog.163.com/jackylau_v/blog/static/17575404020118312853830/

   Python列表list数组array 常用操作集锦: http://blog.sina.com.cn/s/blog_6a1837e90100kz9j.html

3、python 列表函数:http://www.cnblogs.com/zhangfei/archive/2013/06/02/3114240.html

4、python 序列应用:http://www.cnblogs.com/zhangfei/archive/2013/06/02/3114246.html

5、python 字典操作函数:http://www.cnblogs.com/zhangfei/archive/2013/06/02/3114245.html


操作符:

很多与C、perl类似。


函数:

函数定义:

def myfun(pram1,pram2 = 123):

  print pram1,parm2

  return

Python的函数参数传递:传值?引用?:http://blog.csdn.net/winterttr/article/details/2590741

与其他语言不一样,Python参数传递采用的肯定是“传对象引用”的方式,只是区分可变对象(list,dict等)和不可变对象(strings, tuples, 和numbers).


文件操作:

Python读写文件: http://www.cnblogs.com/allenblogs/archive/2010/09/13/1824842.html

通过创建一个file类的对象来操作一个文件(打开、读写、关闭等)。

1
2
3
4
5
6
7
8
9
10
11
12
pf  =  file ( 'myfile.txt' 'w' )      # open for 'w'riting
pf.write( "hello world" )       # write text to file
pf.close()       # close the file
=  file ( 'poem.txt' )
# if no mode is specified, 'r'ead mode is assumed by default
while  True :
     line  =  f.readline()
     if  len (line)  = =  0 # Zero length indicates EOF
         break
     print  line,
     # Notice comma to avoid automatic newline added by Python
f.close()  # close the file

正则表达式:

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#正则表达式================================
import  re;
data  =  "158hao123meili456.com"
pattern  =  r "[a-z]+(\d+)" ;
 
=  re.match(pattern,data);  #从头开始匹配
if  m = = None :
     print  "warning.can not match."
 
=  re.search(pattern,data);  #只匹配第一次
if  m:
     print  "search:"
     print  m.groups();  #('123',)
     print  m.group( 0 );  #hao123
     print  m.group( 1 );  #123
=  re.findall(pattern,data);  #相当于perl中默认的匹配
if  m:
     print  "findall num:%d"  % ( len (m))  #格式化打印匹配的次数
     print  "findall 0:" + m[ 1 #456
=  re.sub( "\d" , "@" ,data);  #perl中的替换
if  m:
     print  m;  #@@@hao@@@meili@@@.com

常用函数与模块

1、python常用函数分类整理(文件及目录操作函数):http://www.cnblogs.com/zhangfei/archive/2010/11/01/1866189.html

2、Python里的OS模块常用函数说明:http://www.cnblogs.com/zhangfei/archive/2013/06/02/3114354.html

3、python类型转换、数值操作(收藏):http://www.cnblogs.com/jenry/archive/2010/05/27/1744861.html


拓展阅读:

1、《简明Python教程.chm》

http://woodpecker.org.cn/abyteofpython_cn/chinese/ 

http://sebug.net/paper/python/

http://www.kuqin.com/abyteofpython_cn/

2、实例教程:1小时学会Python

http://www.cnitblog.com/yunshichen/archive/2008/05/09/43527.html 

3、Python 3 教程一:入门 http://www.cnitblog.com/yunshichen/archive/2011/07/28/55924.html#74903 


你可能感兴趣的:(Python脚本基础)