考试休息了两天!!!
通过for...in可以遍历字符串中的每一个字符。
word = 'helloworld'
for c in word:
print c
通过[]加索引的方式,访问字符串中的某个字符。
字符串不能通过索引访问去更改其中的字符。
join方法也可以对字符串使用,作用就是用连接符把字符串中的每个字符重新连接成一个新字符串。
newword = ','.join(word)
打开一个文件的命令: f = open('date.txt')
py2里面可以使用open或file方法打开文件,py3只能使用open。
通过read()函数把文件内所有内容读进一个字符串种。date = f.read()
用close()关闭文件,释放资源。
f = open('date.txt')
date =f.read()
print (date)
f.close()
读取文件的方法还有:readline() #读取一行内容
readlines() #把内容按行读取至一个list中。