码迷,mamicode.com
首页 > 编程语言 > 详细

【Python】程序在运行失败时,一声不吭继续运行pass

时间:2017-11-26 17:54:20      阅读:346      评论:0      收藏:0      [点我收藏+]

标签:没有   err   计算   order   pre   ack   top   object   提示   

在前面程序出现异常时,我们都会给一个提示,告诉用户,程序为什么会异常,但是现在我们想在程序出现异常时,不做处理,让程序默默的往下执行,不要做声。

那么我们就引入了pass语句

def count_words(file_path):
    try:
        with open(file_path) as file_object:
            contents = file_object.read()
    except FileNotFoundError:
        pass
    else:
        #计算该文件包含多少个单词
        words = contents.split()
        num_words = len(words)
        print("The file "+" has about " + str(num_words) +" words.")

#调用函数
file_paths = [txt\A.txt,txt\B.txt,txt\C.txt]
for file_path in file_paths:
    count_words(file_path)

当文件C.txt不存在时,还是执行,只时执行结果没有任何输出

pass语句还充当了占位符,它提醒你在程序的某个地方什么都没有做,并且以后也需要在这里做什么。

【Python】程序在运行失败时,一声不吭继续运行pass

标签:没有   err   计算   order   pre   ack   top   object   提示   

原文地址:http://www.cnblogs.com/OliverQin/p/7899255.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!