首页 > 代码库 > [带你飞]一小时带你学会Python

[带你飞]一小时带你学会Python

1.面向的读者:

   具有Javascript经验的程序猿。

 

2 快速入门
2.1 Hello world

安装完Python之后,打开IDLE(Python GUI) , 该程序是Python语言解释器,你写的语句能够立即运行.我们写下一句著名的程序语句:

1 print "Hello,world!"

并按回车.你就能看到这句被K&R引入到程序世界的名言.

在解释器中选择"File"--"New Window" 或快捷键 Ctrl+N , 打开一个新的编辑器.写下如下语句:

1 print "Hello,world!"2 raw_input("Press enter key to close this window...");

保存为a.py文件.按F5,你就可以看到程序的运行结果了.这是Python的第二种运行方式.

找到你保存的a.py文件,双击.也可以看到程序结果.Python的程序能够直接运行,对比Java,这是一个优势.

 

2.2 国际化支持
我们换一种方式来问候世界.新建一个编辑器并写如下代码:

1 print "欢迎来到奥运中国!"2 raw_input("Press enter key to close this window...");

在你保存代码的时候,Python会提示你是否改变文件的字符集,结果如下:

1 # -*- coding: cp936 -*-2 3 print "欢迎来到奥运中国!"4 raw_input("Press enter key to close this window...");

将该字符集改为我们更熟悉的形式:

1 # -*- coding: GBK -*-2 3 print "欢迎来到奥运中国!" # 使用中文的例子4 raw_input("Press enter key to close this window...");

程序一样运行良好.

 

2.3 方便易用的计算器
用微软附带的计算器来计数实在太麻烦了.打开Python解释器,直接进行计算:

1 a=100.02 b=201.13 c=23434 print (a+b+c)/c

Python会自动帮你实现类型转换。


2.4 字符串,ASCII和UNICODE
可以如下打印出预定义输出格式的字符串:

1 print """2 Usage: Python3 -Java4 -C++5 """

结果输出:

1 Usage: Python2 -Java3 -C++

字符串是怎么访问的?请看这个例子:

 1 word="abcdefg"                         // 数组 2 a=word[2]                              // 数组中的一个值 3 print "a is: "+a 4 b=word[1:3]                            // 数组范围,取1到2的值,但是不取最后区间的值 5 print "b is: "+b # index 1 and 2 elements of word. 6 c=word[:2]                             // 数组范围,从开始取到2,但是不取2的值 7 print "c is: "+c # index 0 and 1 elements of word. 8 d=word[0:]                             // 从头开始取到尾 9 print "d is: "+d # All elements of word.10 e=word[:2]+word[2:]                    // 继续从头取到尾11 print "e is: "+e # All elements of word.12 f=word[-1]                             // 取最后一个元素“g”13 print "f is: "+f # The last elements of word.14 g=word[-4:-2]                          // 倒着取,打印“de”15 print "g is: "+g # index 3 and 4 elements of word.16 h=word[-2:]                            // 倒着取,打印“fg”17 print "h is: "+h # The last two elements.18 i=word[:-2]                            // 倒着去,打印“abcde”19 print "i is: "+i # Everything except the last two characters20 l=len(word)                            // 长度,结果为721 print "Length of word is: "+ str(l)

 

请注意ASCII和UNICODE字符串的区别:

1 print "Input your Chinese name:"2 s=raw_input("Press enter to be continued...");3 print "Your name is ... : " +s;4 l=len(s)5 print "Length of your Chinese name in asc codes is:"+str(l);6 a=unicode(s,"GBK")7 l=len(a)8 print "I‘m sorry we should use unicode char!Characters number of your Chinese 9 name in unicode is:"+str(l);

 

2.5 使用List
类似Java里的List,这是一种方便易用的数据类型:

 1 word=[a,b,c,d,e,f,g] 2 a=word[2]                                                 // a is: c 3 print "a is: "+a 4 b=word[1:3] 5 print "b is: " 6 print b # index 1 and 2 elements of word.                 // [‘b‘, ‘c‘] 7 c=word[:2] 8 print "c is: " 9 print c # index 0 and 1 elements of word.                 // [‘a‘, ‘b‘]10 d=word[0:]11 print "d is: "12 print d # All elements of word.                           // [‘a‘, ‘b‘, ‘c‘, ‘d‘, ‘e‘, ‘f‘, ‘g‘]13 e=word[:2]+word[2:]14 print "e is: "15 print e # All elements of word.                           // [‘a‘, ‘b‘, ‘c‘, ‘d‘, ‘e‘, ‘f‘, ‘g‘]16 f=word[-1]17 print "f is: "18 print f # The last elements of word.                      // g19 g=word[-4:-2]20 print "g is: "21 print g # index 3 and 4 elements of word.                 // [‘d‘, ‘e‘]22 h=word[-2:]23 print "h is: "24 print h # The last two elements.                          // [‘f‘, ‘g‘]25 i=word[:-2]26 print "i is: "27 print i # Everything except the last two characters       // [‘a‘, ‘b‘, ‘c‘, ‘d‘, ‘e‘]28 l=len(word)29 print "Length of word is: "+ str(l)                       // 730 print "Adds new element..."31 word.append(h)32 print word                                                // [a, b, c, d, e, f, g, h]

 

2.6 条件和循环语句
1
# Multi-way decision
2
x=int(raw_input("Please enter an integer:"))
3
if x<0:
4
x=0
5
print "Negative changed to zero"elif x==0:
6
print "Zero"
7

8
else:
9
print "More"
10

11
# Loops List
12
a = [‘cat‘, ‘window‘, ‘defenestrate‘]
13
for x in a:
14
print x, len(x)
2.7 如何定义函数
1
# Define and invoke function.
2
def sum(a,b):
3
return a+bfunc = sum
4
r = func(5,6)
5
print r
6

7
# Defines function with default argument
8
def add(a,b=2):
9
return a+b
10
r=add(1)
11
print r
12
r=add(1,5)
13
print r
并且,介绍一个方便好用的函数:

1
# The range() function
2
a =range(5,10)
3
print a
4
a = range(-2,-7)
5
print a
6
a = range(-7,-2)
7
print a
8
a = range(-2,-11,-3) # The 3rd parameter stands for step
9
print a
2.8 文件I/O
1
spath="D:/download/baa.txt"
2
f=open(spath,"w") # Opens file for writing.Creates this file doesn‘t exist.
3
f.write("First line 1.\n")
4
f.writelines("First line 2.")f.close()
5

6
f=open(spath,"r") # Opens file for reading
7

8
for line in f:
9
print line
10

11
f.close()
2.9 异常处理
1
s=raw_input("Input your age:")
2
if s =="":
3
raise Exception("Input must no be empty.")try:
4
i=int(s)
5
except ValueError:
6
print "Could not convert data to an integer."
7
except:
8
print "Unknown exception!"
9
else: # It is useful for code that must be executed if the try clause does not raise an exception
10
print "You are %d" % i," years old"
11
finally: # Clean up action
12
print "Goodbye!"
2.10 类和继承
1
class Base:
2
def __init__(self):
3
self.data = http://www.mamicode.com/[]
4
def add(self, x):
5
self.data.append(x)
6
def addtwice(self, x):
7
self.add(x)
8
self.add(x)# Child extends Base
9
class Child(Base):
10
def plus(self,a,b):
11
return a+b
12

13
oChild =Child()
14
oChild.add("str1")
15
print oChild.data
16
print oChild.plus(2,3)
2.11 包机制
每一个.py文件称为一个module,module之间可以互相导入.请参看以下例子:

1
# a.py
2
def add_func(a,b):
3
return a+b

1
# b.py
2
from a import add_func # Also can be : import aprint "Import add_func from module a"
3
print "Result of 1 plus 2 is: "
4
print add_func(1,2) # If using "import a" , then here should be "a.add_func"
module可以定义在包里面.Python定义包的方式稍微有点古怪,假设我们有一个parent文件夹,该文件夹有一个child子文件夹.child中有一个module a.py . 如何让Python知道这个文件层次结构?很简单,每个目录都放一个名为_init_.py 的文件.该文件内容可以为空.这个层次结构如下所示:

1
parent
2
--__init_.py
3
--child
4
-- __init_.py
5
--a.pyb.py
那么Python如何找到我们定义的module?在标准包sys中,path属性记录了Python的包路径.你可以将之打印出来:

1
import sys
2

3
print sys.path
通常我们可以将module的包路径放到环境变量PYTHONPATH中,该环境变量会自动添加到sys.path属性.另一种方便的方法是编程中直接指定我们的module路径到sys.path 中:

1
import sys
2
sys.path.append(‘D:\\download‘)from parent.child.a import add_func
3

4
print sys.path
5

6
print "Import add_func from module a"
7
print "Result of 1 plus 2 is: "
8
print add_func(1,2)
总结
你会发现这个教程相当的简单.许多Python特性在代码中以隐含方式提出,这些特性包括:Python不需要显式声明数据类型,关键字说明,字符串函数的解释等等.我认为一个熟练的程序员应该对这些概念相当了解,这样在你挤出宝贵的一小时阅读这篇短短的教程之后,你能够通过已有知识的迁移类比尽快熟悉Python,然后尽快能用它开始编程.

 

[带你飞]一小时带你学会Python