python入门与实践第十章

'''
open('文件名'):在当前执行的文件所在的目录中查找指定文件然后打开
with在不需要访问文件后将其关闭。只管打开文件,在需要的时候使用它并在合适的时候自动关闭。
不建议同时使用open(),close()
read()读取文件的全部内容。read()到达文件末尾时返回一个空字符串。删除空行可以使用.rstrip()方法。
'''
with open('pi_digits') as file_object:
contents = file_object.read()
print(contents)

with open('pi_digits') as file_object:
contents = file_object.read()
print(contents.rstrip())#rstrip()删除字符串末尾的空白#
'''
相对路径:当前运行的程序所在的目录。
with open('text_files\filenema.txt') as file_object:
绝对路径:完整的路径
file_path = 'C:\ehmaththes\other_files\text_files\filename.txt'
with open('file_path') as file_object:
'''
'''
逐行读取:在文件中查找特定信息或者修改本。
'''
file_name = 'pi_digits'
with open(file_name) as file_object:
for line in file_object:
#print(line)#
print(line.rstrip())#删除换行空格#
filename = 'pi_digits'
with open(filename) as file_object:
lines = file_object.readlines()
for line in lines:
print(line.rstrip())
'''
使用文件中的内容:删除文件末尾的换行符。
'''
filename = 'pi_digits'
with open(filename) as file_object:
lines = file_object.readlines()
pi_string = ' '
for line in lines:
pi_string += line.rstrip()#使用文件中的内容:删除文件末尾的换行符。#
print(pi_string)
print(len(pi_string))
'''
删除原来位于每行左边的空格。
'''
filename = 'pi_digits'
with open(filename) as file_object:
lines = file_object.readlines()#将内容存储在列表中#
pi_string = ' '
for line in lines:
pi_string += line.strip()
print(pi_string)
print(len(pi_string))
'''
写文件:open(参数1,参数2,。。。)第一个为文件名,第二个为模式:'w'写入模式
'r'读取模式,'a'附加模式,'r+'读取和写入模式。省略模式时,Python将默认为读取模式。
当要写入的文件不存在的时候,将自动创建它。如果模式是'w'打开文件,如果文件已经存在,则原来的文件的内容将会被清除。

'''
filename = 'programming.txt'
with open(filename,'w') as file_object:
file_object.write('I love programming.')

python 只能将字符串写入文本。数字需要加str()转换成字符串#

'''
write()不会在文本末尾添加换行符。
'''
filename = 'programming.txt'
with open(filename,'w') as file_object:
file_object.write('I love programming.')
file_object.write('I love new games.')

让每个字符串单独占一行#

filename = 'programming.txt'
with open(filename,'w') as file_object:
file_object.write('I love programming.\n')
file_object.write('I love new games.\n')
'''
附加到文件:给文件添加内容而不是覆盖原来的文件。如果指定的文件不存在,将自动创建一个空文件。

'''
filename = 'programming.txt'
with open(filename,'a') as file_object:
file_object.write('I also love finding meaning in large datasets.\n')
file_object.write('I love creating apps that can run in a browser.\n')
'''
异常:使用异常避免崩溃。
'''

try:
print(5/0)
except ZeroDivisionError:
print('you cant divide by zero.') ''' print('Give me two number, and Ill divide them.')
print("Enyer 'q' to quit.")
while True:
first_number = input("\n First number: ")
if first_number == 'q':
break
second_number = input("Second number: ")
if second_number == 'q':
break
answer = int(first_number)/int(second_number)
print(answer)
'''
print('Give me two number, and Ill divide them.') print("Enter 'q' to quit.") while True: first_number = input("\n First number: ") if first_number == 'q': break second_number = input("Second number: ") if second_number == 'q': break try: answer = int(first_number) / int(second_number)#可能引发异常的代码# except ZeroDivisionError: print('you cant divide by zero.')
else:
print(answer)#代码运行成功的才放在else里#
filename = 'alice.txt'
with open(filename) as file_object:
try:
contents = file_object.read()
except FileNotFoundError:
print('you cant find the file.') ''' 分析文本: ''' title = "Alice in Wonderword" title.split()#split()以空格分隔符将字符串拆成多个部分,并将这些字符串存储在列表中。# filename = 'alic.txt' try: with open(filename) as f_obj: contents = f_obj.read() except FileNotFoundError: print('you cant find the file.')
else:
#计算文件大致包含多少个单词
words = contents.split()
num_words = len(words)
print('The file has '+ filename+' has about '+str(num_words)+' words.')
def count_words(filename):
try:
with open(filename) as f_obj:
contents = f_obj.read()
except FileNotFoundError:
print('you can`t find the file.')
else:
words = contents.split()
num_words = len(words)
print('The file has '+ filename+' has about '+str(num_words)+' words.')
filename = 'alic.txt'
count_words(filename)
'''
让程序在异常时一声不吭:用pass语句。
pass语句还充当了占位符,提醒您在程序的某个位置什么也不做,并且以后要在这里做些什么。
'''
def count_words(filename):
try:
with open(filename) as f_obj:
contents = f_obj.read()
except FileNotFoundError:
pass
else:
words = contents.split()
num_words = len(words)
print('The file has '+ filename+' has about '+str(num_words)+' words.')
filenames = ['alic.txt','siddharttha.txt','moby_dick.txt','little_women.txt']
for filename in filenames:
count_words(filename)
'''
存储数据:json让你能够将简单的Python数据结构转储到文件中,并在程序再次运行时加载该文件中的数据。
使用json在程序之间分享数据。
json.dump()接受两个实参:要存储的数据和可用于存储数据的文件对象。
'''

import json
numbers = [2,3,5,7,11,13]
filename = 'numbers.json'
with open(filename,'w') as f_obj:
json.dump(numbers,f_obj)
'''
加载存储的信息
'''
import json
filename = 'numbers.json'
with open(filename) as f_obj:
numbers = json.load(f_obj)#json(load()加载文件对象里面的内容并存储到变量numbers里)#
print(numbers)
'''
保存和读取用户生成的数据。
'''
import json
username = input("What is your name: ")
filename = 'username.json'
with open(filename,'w') as f_obj:
json.dump(username,f_obj)
print('We`ll remember you when you come back, '+username+'!')

import json
filename = 'username.json'
with open(filename) as f_obj:
username = json.load(f_obj)
print('Welcome back, '+username+'!')
'''
如果第一次没有用户名,则会提醒用户输入然后自动创建一个文本保存用户信息
'''
import json
filename = 'username.json'
try:#可能出现错误的情况#
with open(filename) as f_obj:
username = json.load(f_obj)
except FileNotFoundError:#如果出现错误如何操作#
username = input('What is your name?')
with open(filename,'w') as f_obj:
json.dump(username,f_obj)
print("I will remember you when you come back," + username +'!')
else:#不出现错误如何操作#
print('Welcome back,'+username+'!')
'''
重构:将代码分成一系列完成具体工作的函数
'''
import json
def greet_user():
filename = 'username.json'
try: # 可能出现错误的情况#
with open(filename) as f_obj:
username = json.load(f_obj)
except FileNotFoundError: # 如果出现错误如何操作#
username = input('What is your name?')
with open(filename, 'w') as f_obj:
json.dump(username, f_obj)
print("I will remember you when you come back," + username + '!')
else: # 不出现错误如何操作#
print('Welcome back,' + username + '!')
greet_user()

import json
def ger_stored_username():
filename = 'username.json'
try:
with open(filename) as f_obj:
username = json.load(f_obj)
except FileNotFoundError:
return None
else:
return username
def greet_user():
username = ger_stored_username()
if username:
print('Welcome back, '+username+'!')
else:
username = input('What is your name? ')
filename = 'username.json'
with open(filename,'w') as f_obj:
json.dump(username,f_obj)
print('we will remember you when you come back, '+username+'!')
greet_user()

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,874评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,102评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,676评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,911评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,937评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,935评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,860评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,660评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,113评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,363评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,506评论 1 346
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,238评论 5 341
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,861评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,486评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,674评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,513评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,426评论 2 352

推荐阅读更多精彩内容