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

python语句整理

时间:2020-06-28 18:18:24      阅读:78      评论:0      收藏:0      [点我收藏+]

标签:with open   filename   style   guest   try   bsp   count   nbsp   object   

pass语句,可在代码块中使用它来让Python什么都不要做。
pass语句还充当了占位符,它提醒你在程序的某个地方什么都没有做,并且以后也许要在这
里做些什么。
 1 def count_words(filename):
 2 
 3     try:
 4         with open(file_name) as file_object:
 5             contents = file_object.read()
 6     except FileNotFoundError:
 7         pass
 8     else:
 9         file_words = contents.split()
10         file_words_nums = len(file_words)
11         print("The file "+file_name+" has about "+str(file_words_nums)+" words.")
12 
13 file_names = [guest_book.txt,book.txt,guest.txt]
14 for file_name in file_names:
15     count_words(file_name)

 

 

python语句整理

标签:with open   filename   style   guest   try   bsp   count   nbsp   object   

原文地址:https://www.cnblogs.com/merryconei123/p/13204020.html

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