python语句整理

Posted merryconei123

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python语句整理相关的知识,希望对你有一定的参考价值。

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语句整理的主要内容,如果未能解决你的问题,请参考以下文章

python语句整理

IOS开发-OC学习-常用功能代码片段整理

VS2015 代码片段整理

小程序各种功能代码片段整理---持续更新

Python 基础知识整理-2

Python编码规范整理