Chapter 4 notes
实际上,python 所有的传递都是引用传递。之所以基础类型的传递看起来像是值传递(拷贝),是因为 python 中的基础类型都是 Immutable Variable。因此对基础类型的赋值期间,做了以下的操作:
需要注意的是,local 变量是独立存在的。跨越 scope 的赋值并不能改变原有变量的值(引用);比如在函数内部对变量进行修改不会影响传递进函数的变量。
实际上,python 在调用函数的时候进行的操作,都是引用指向的变化。假设我我们有以下程序:
#Add one to anInteger
def addOne(anInteger):
anInteger = anInteger + 1
print("anInteger:", anInteger)
#Create myInteger with the value 5
myInteger = 5
print("myInteger before addOne:", myInteger)
#Call addOne on myInteger
addOne(myInteger)
print("myInteger after addOne:", myInteger)
myInteger
指向了内存内容为 5
的区块addOne()
函数时,当传递 myInteger
给 anInteger
时,python 建立了一个新的名字指向了 myInteger
区块anInteger
进行修改时,由于 myInteger
属于 Immutable Variable,因此 python 此时只能创建一个新的内存区块,用于存储 anInteger
的新值,此时为 6
myInteger
的值依然是 5
,因为 myInteger
的指向没有发生过变化。
python id()
函数返回变量对应的内存地址。
#address printing
myInt = 5
print(id(myInt1))
python 中,如果对两个 name 赋予相同的值:
Method 同 C++ 成员函数。一些常用的 method:
#string
isdigit()
isupper()
#check if the specified prefix exsit in the string
string.startswith(prefix)
所有 method 都可以以非成员函数(function)的形式调用,比如:
#equal calls
isdigit(myString)
myString.isdigit()
如果 string 中包含了双引号(quotation mark) "
和单引号(apostrophes) '
,那么有如下三种方法打印:
"
开始,那么一定会以第一个遇到的双引号 "
结束。打印双引号之间的内容,比如:
a_string = "Helloworld"
Helloworld
a_string = '"Helloworld"'
"Helloworld"
'''
这种形式来处理该问题。连续的三个单引号会被视作双引号或者单引号,在遇到下一个连续三个单引号的时候结束,打印之间的内容。比如:
a_string = ''''"Helloworld'''
'"Helloworld
在 python 中,\
(forward slash)之后的序列被称为 escape sequence。python 会检查 \
后的内容是否与 escape sequence 中的内容匹配。如果匹配,则应用该内容。比较重要的有:
\n
:换行(newline)\t
: tab\"
:反斜杠后面可以接 string 终结标志,比如双引号。python 会认为这种组合是我们希望打印反斜杠后面的字符,而不是终结 string。\\
:打印第二个反斜杠,并忽略其 escape sequence 起点的作用注意:三个单引号无法被反斜杠标记。三个单引号起头遇到下一个三个单引号的序列之前,会将之间所有的内容强制转换为 string。因此,如果在使用三个单引号标记的 string 中使用了回车键,那么该回车会被视作换行,并反映到打印中。比如:
#an enter is after 5
a_string = '''12345
67890'''
会打印:
12345
67890
+
实现+=
实现
my_string = "Hello"
my_string += "!"
a_string = "hello"
for i in range(0, 3):
my_string += astring[i]
start
和 end
也可以是 literal:
start = 0
end = 3
my_string = a_string[start : end]
#0,1,2,3
my_string = a_string[0:3]
#0,1,2, 3 alterntive
my_string = a_string[:3]
#4 to the end
my_string = a_string[3:]
python 有范围保护。如果 index 的范围超出了 string 的最大值,那么 substring 只会截取到被截取 string 的最后一位:
my_string = a_string[1:100]
#will print
ello
如果在截取 string 的时候需要添加间隔,可以使用如下的方法:
a_str = "Hello, world!"
#take every other 2 chars from second char (inclusive), "el,w"
my_string = a_str[1:9:2]
#take every other 3 chars from the beginning of the string, "Hl r!"
my_string = a_str[::3]
负数 index 在 python 中表示从结束的方向进行下标的计量,比如:
#will print 3, notice the count start with 1, not zero
my_string = "01234"
print(my_string[-2])
负数 Index 也可以用于范围表示,比如:
my_string = "01234"
#012, the number till 3
print(my_string[:-2])
#34, the number from 3 to the end
print(my_string[-2:])
python 中会出现如下带有两个方括号写法:
myString = "1234567890"
print(myString[::2][2:])
这种实际上是进行了多次 slicing,也就是:
myString = "1234567890"
# 13579
myString = myString[::2]
# 579
myString = myString[2:]
判断 substring 是否存在:in
。
#print True
a_string = "I like it!"
print("I" in a_string)
搜索指定的 surstring 的位置:成员函数 find()
。find
会按指定关键字对指定字符串进行搜索,并范围第一个匹配的子字符串的起始下标。如果没有找到,则返回 -1
。需要注意的是,搜索区分大小写。
#result is 2
myString = "ABCDE"
print(myString.find("CDE"))
通常,我们可以利用 find()
的返回值来作为循环的判断条件:
my_string = "ABCDEABCDEABCDEFGHIJFGHIJABCDEABCDEFGHIJ"
keyword = "AB"
find_location = my_string.find(keyword)
#while keyword is in the string, keep search
while find_location >= 0:
print(keyword, "found at", find_location)
#get the next index
find_location = my_string.find(keyword, find_location + 1)
find()
可以添加 index 来搜索 string 中指定的范围:
myString = "ABCDEABCDEABCDE"
#Prints the first index of "CDE" in myString after 5
print(myString.find("CDE", 5))
#Prints the first index of "CDE" in myString between 3 and 6
print(myString.find("CDE", 3, 6))
split()
可以按指定的字符作为间隔符划分字符串:
#will print ['I', 'like', 'shorts!']
my_string = "I like shorts!"
print(my_string.split())
如果分隔符处于字符串的最后一位,那么 split() 还会额外产生一个空字符串作为最后的一个分割部分。
我们可以利用 split()
返回值的特性来计算 string 中单词的数量:
#Given the assumption that spaces indicate a new word
def num_words(a_string):
return len(a_string.split())
以下的所有成员调用均不会改变原有 string 的内容。
# capitalize the first char in the string
print(myString.capitalize())
# lower all charactors in the string
print(myString.lower())
# caplitalize all characters in the string
print(myString.upper())
# caplitalize all characters follow by a space in the string
print(myString.title())
# strip out all spaces before or after the string
# e.g. " I like shorts! " -> "I like shorts!"
print(myString.strip())
# find and replace ALL instances of thekeyword with your own word
print(myString.replace("MY", "YOUR"))
# join an result yield by spilt() (a list) with a specialized character into a string
# e.g. ['I', 'like', 'shorts!'] -> "I-like-shorts!"
# notice "-"(the dedicated spacer) is the string that called join()
my_list = my_string.split()
print("-".join(my_list))
List 是 python 提供的,通过 index 访问的一种有序容器。List 有两种性质:
Tuples 是 python 提供的,类 list 的,但属于 immutiable 类型的数据结构。
# using paranthesis
# using value
myTuple = (1,2,3)
# using variable
my_int1 = 1
my_int2 = 2
myTuple = (my_int1, my_int2)
Tuple 支持由不同类型的变量组成(因为 Python 不会提前检查变量的类型):
my_int = 1
my_str = "two"
myTuple = (my_int, my_str)
# using index
print(myTuple[0])
# using slice
print(myTuple[3:])
Tuple 还可以进行 unpacking,也就是将里面的元素全部释放出来作为各自单独的存在。unpacking 的时候,可以对每个元素赋予新的 name:
my_str = "Hello"
my_float = "5.1"
my_int = 5
# packing
my_tuple = (my_str, my_float, my_int)
# unpacking
(my_new_str, my_new_float, my_new_int) = my_tuple
#Returns a tuple containing the quotient and remainder
def quotientAndRemainder(dividend, divisor):
#do sthing...
#Returns the tuple of the quotient and remainder
return (quotient, remainder)
(myQuotient, myRemainder) = quotientAndRemainder(myDividend, myDivisor)
print("Quotient:", myQuotient)
print("Remainder:", myRemainder)
# define a nested tuple
mySuperTuple = ((1, 2, 3), (4, 5, 6), (7, 8, 9))
# define a nested tuple with variable
myTuple1 = (1, 2, 3)
myTuple2 = (4, 5, 6)
myTuple3 = (7, 8, 9)
mySuperTuple = (myTuple1, myTuple2, myTuple3)
#access first element in the second sub tuple
print(mySuperTuple[1][0])
List 可以使用所有 Tuple 支持的操作:
定义 List 使用 square bracket:
my_list = [1,2,3]
List 与 Tuple 的不同之处在于 List 是可写的。
list_2 = [1,2,3]
list_1 = list_2
上述代码中:
list_1
和 list_2
指向的是同一个 list
my_list = [6,2,3,1,5,4]
# [1, 2, 3, 4, 5, 6]
my_list.sort()
my_list = [6,2,3,1,5,4]
# [4, 5, 1, 3, 2, 6]
my_list.reverse()
my_list = [6,2,3,1,5,4]
# [6, 2, 3, 1, 5, 4, 7]
my_list.append(7)
my_list = [6,2,3,1,5,4]
my_list2 = [0,0,0]
# [6, 2, 3, 1, 5, 4, 0, 0, 0]
my_list.extend(my_list2)
my_list = [6,2,3,1,5,4]
# [99, 6, 2, 3, 1, 5, 4]
my_list.insert(0,99)
my_list = [6,2,3,1,5,4]
# [6, 2, 3, 1, 5]
# 4
i = my_list.pop()
remove()
的参数是 list 元素的内容del
的参数是 list 中元素的范围
my_list = [6,2,3,1,5,4]
# [2, 3, 1, 5, 4]
my_list.remove(6)
print(my_list)
# [2, 3, 1]
del my_list[-2:]
print(my_list)
遍历 list 使用 for loop 和关键字 in
:
for item in a_list:
#do sth......
由于 list 是可写的,我们需要尤其注意其在函数内部的使用。总的来说,函数不应该改变输入到函数的内部的 list。
注意如下的形式:
for num in list:
#do sth in num..
这种情况下 num
是局部变量,修改其值不影响对应的 list 元素本身。
LIFO: Last in, First out
FIFO:First in, First out
\n
在输出末尾
# open file "out_file.txt" in writing mode
output_file = open("out_file.txt", "w")
# wirte content to out_file.txt, string ONLY, NO NEWLINE by default
output_file.write(str(myInt1))
# mannally add newline
output_file.write(str(myInt1) + "\n")
# close file
output_file.close()
writeline()
函数(不能换行,不能写非 string 的 list,不推荐)write()
与 join
组合 (也不能支持非 string 的 list)print()
直接输出到文件(推荐)
# wirte every element each time
for name in list:
output_file.write(str(name) + "\n")
# write a whole list in one time with writelines()
output_file.writelines(my_list)
# write a whole list in one time with join():
output_file.write("\n".join(my_list))
# print comes with line break by default, so no "\n" needed
print(name, file = output_file)
# appending mode
output_file = open("xxx.text", "a")
readline()
读取每一行内容(会读取换行)print()
的 tag end=“”
取消 print()
自带的换行strip()
取消文本前后的内容read()
读取所有内容
# open input_file
input_file = open("xxx.txt", "r")
# readline() with "\n"
print(input_file.readline())
# readline() without "\n" by changing print()
print(input_file.readline(), end = "")
# readline() without "\n" by adding strip()
print(input_file.readline().strip())
# take size as parameter, default -1, which means the whole file
input_file.read()
读取的内容可以赋给变量。类型转换后会自动删除 white space 的内容:
my_int = int(input_file.readline())
for line in input_file:
my_list.append(line.strip())
def save(file_name, data):
output_file = open(file_name, "w")
for line in data:
print(line, file = output_file)
output_file.close()
def load(file_name):
a_list = []
input_file = open(file_name, "r")
for line in input_file:
a_list.append(line.strip())
input_file.close()
return a_list
my_list = [1,2,3,4,5,6,7]
save("test.txt", my_list)
loading_list = load("test.txt")
print(loading_list)
使用大括号 {
braces 创建。key
和 value
通过冒号 (colon) :
组成 pair“:
#define
my_dict = {"sprockets" : 5, "widgets" : 11, "cogs" : 3, "gizmos": 15}
#access and modifiy
my_dict["sprockets"] = 1
#if unsure whether a operation is an creating or modifiying:
dictionary.setdefault("key", 0)
dictionary["key"] += 1
in
关键字查询 key 是否存在于字典中
# adding pair
myDictionary["gadgets"] = 1
# delete pair
del myDictionary["gadgets"]
# if we only concern the value
for val in dict.value():
if val > 5:
# do sth
# if we only care about key
for k in dict:
# do sth
for k in dict.key():
# do sth
# if we need to bring them in both
for (k, val) in dict.items():
# do sth
dict = {}
for name in a_list:
# if the name already has the record, add 1 count
if name in dict:
dict[name] += 1
# else, create the name and add 1 count
else:
dict[name] == 1
这种情况下需要知道 value 的范围。假设 value 是餐桌的编号(1-4),而 key 是客人的名字;如果想统计哪个桌子上都有谁:
for tab_num in range(1, 4):
for (name, table) in seating_chart.item():
if tab_num == table:
print(name, end = " ")