python⼊门之基础语法第四关输⼊输出答案_Python基础语法
(四)
--------------------------------------------接 Python 基础语法(三)--------------------------------------------
⼗、Python标准库
Python标准库是随Pthon附带安装的,包含了⼤量极其有⽤的模块。
1. sys模块sys模块包含系统对应的功能
sys.argv ---包含命令⾏参数,第⼀个参数是py的⽂件名
sys.platform ---返回平台类型
sys.path ---程序中导⼊模块对应的⽂件必须放在sys.path包含的⽬录中,使⽤sys.path.append添加⾃⼰的模块路径
sys.stdin,sys.stdout,sys.stderr ---包含与标准I/O 流对应的流对象
python入门教程(非常详细)书s = adline()
sys.stdout.write(s)
2. os模块 该模块包含普遍的操作系统功能
os.name字符串指⽰你正在使⽤的平台。⽐如对于Windows,它是'nt',⽽对于Linux/Unix⽤户,它是'posix'
os.listdir()返回指定⽬录下的所有⽂件和⽬录名
os.system()函数⽤来运⾏shell命令
os.linesep字符串给出当前平台使⽤的⾏终⽌符。例如,Windows使⽤'\r\n',Linux使⽤'\n'⽽Mac使⽤'\r'
os.sep 操作系统特定的路径分割符
os.path.split()函数返回⼀个路径的⽬录名和⽂件名
os.path.isfile()和os.path.isdir()函数分别检验给出的路径是⼀个⽂件还是⽬录
iste()函数⽤来检验给出的路径是否真地存在
⼗⼀、其他
asp个人网站实例1. ⼀些特殊的⽅法
名称说明
__init__(self,...)
这个⽅法在新建对象恰好要被返回使⽤之前被调⽤。
__del__(self)
恰好在对象要被删除之前调⽤。
__str__(self)
在我们对对象使⽤print语句或是使⽤str()的时候调⽤。
__lt__(self,other)
当使⽤ ⼩于 运算符(等等)都有特殊的⽅法。
__getitem__(self,key)
使⽤x[key]索引操作符的时候调⽤。
__len__(self)
对序列对象使⽤内建的len()函数的时候调⽤。
下⾯的类中定义了上表中的⽅法:
class Array:
__list = []
def __init__(self):
print "constructor"
def __del__(self):
print "destructor"
def __str__(self):
return "this self-defined array class"
def __getitem__(self, key):
return self.__list[key]
def __len__(self):
return len(self.__list)
def Add(self, value):
self.__list.append(value)
def Remove(self, index):
del self.__list[index]macbookair结束进程快捷键
def DisplayItems(self):
print "show all items----"
for item in self.__list:
print item
arr = Array() #constructorprint arr #this self-defined array classprint len(arr) #0arr.Add(1) arr.Add(2)
arr.Add(3)
print len(arr) #3print arr[0] #1arr.DisplayItems()
#show all items----#1#2#3arr.Remove(1)
arr.DisplayItems()
#show all items----#1#3#destructor
2. 综合列表
通过列表综合,可以从⼀个已有的列表导出⼀个新的列表。
list1 = [1, 2, 3, 4, 5]
list2 = [i*2 for i in list1 if i > 3]
print list1 #[1, 2, 3, 4, 5]print list2 #[8, 10]
3. 函数接收元组/列表/字典
当函数接收元组或字典形式的参数的时候,有⼀种特殊的⽅法,使⽤*和**前缀。该⽅法在函数需要获取可变数量的参数的时候特别有⽤。
matlab的importdata函数由于在args变量前有*前缀,所有多余的函数参数都会作为⼀个元组存储在args中。如果使⽤的是**前缀,多余的参数则会被认为是⼀个字典
的键/值对。
def powersum(power, *args):
total = 0
for i in args:
total += pow(i, power)
return total
print powersum(2, 1, 2, 3) #14
def displaydic(**args):
for key,value in args.items():
print "key:%s;value:%s" % (key, value)
displaydic(a="one", b="two", c="three")
#key:a;value:one#key:c;value:three#key:b;value:two
4. lambda
lambda语句被⽤来创建新的函数对象,并在运⾏时返回它们。lambda需要⼀个参数,后⾯仅跟单个表达式作为函数体,⽽表达式的值被这个
trim指令一般多久抹除一次新建的函数返回。 注意,即便是print语句也不能⽤在lambda形式中,只能使⽤表达式。
func = lambda s: s * 3
print func("peter") #peter peter peter
func2 = lambda a, b: a * b
print func2(2, 3) #6
5. exec/eval
exec语句⽤来执⾏储存在字符串或⽂件中的Python语句;eval语句⽤来计算存储在字符串中的有效Python表达式。
cmd = "print 'hello world'"
exec cmd #hello world
expression = "10 * 2 + 5"
print eval(expression) #25
6. assert
assert语句⽤来断⾔某个条件是真的,并且在它⾮真的时候引发⼀个错误--AssertionError。flag = True
assert flag == Truesqlunique约束功能
try:
assert flag == False
except AssertionError, err:
print "failed"
else:
print "pass"
7. repr函数
repr函数⽤来取得对象的规范字符串表⽰。反引号(也称转换符)可以完成相同的功能。
注意,在⼤多数时候有eval(repr(object)) == object。
可以通过定义类的__repr__⽅法来控制对象在被repr函数调⽤的时候返回的内容。
arr = [1, 2, 3]
print `arr` #[1, 2, 3]print repr(arr) #[1, 2, 3]
⼗⼆、练习
实现⼀个通讯录,主要功能:添加、删除、更新、查询、显⽰全部联系⼈。
1 import cPickle
2 import os
3 import sys
4
5 class Contact:
6 def __init__(self, name, phone, mail):
7 self.name = name
8 self.phone = phone
9 self.mail = mail
10
11 def Update(self, name, phone, mail):
12 self.name = name
13 self.phone = phone
14 self.mail = mail
15
16 def display(self):
17 print "name:%s, phone:%s, mail:%s" % (self.name, self.phone, self.mail)
18
19
20 #begin21
22 #file to store contact data23 data = os.getcwd() + os.sep + "contacts.data"
24
25 while True:
26 print "-----------------------------------------------------------------------"
27 operation = raw_input("input your operation(add/delete/modify/search/all/exit):")
28
29 if operation == "exit":
it()
31
32 if ists(data):
33 if size(data) == 0:
34 contacts = {}
35 else:
36 f = file(data)
37 contacts = cPickle.load(f)
38 f.close()
39 else:
40 contacts = {}
41
42 if operation == "add":
43 flag = False
44 while True:
45 name = raw_input("input name(exit to back choose operation):")
46 if name == "exit":
47 flag = True
48 break
49 if name in contacts:
50 print "the name already exists, please input another or input 'exit' to back choose operation"
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论