python语句整理
pass语句,可在代码块中使用它来让Python什么都不要做。
pass语句还充当了占位符,它提醒你在程序的某个地方什么都没有做,并且以后也许要在这
里做些什么。
def count_words(filename): try: with open(file_name) as file_object: contents = file_object.read() except FileNotFoundError: pass else: file_words = contents.split() file_words_nums = len(file_words) print("The file "+file_name+" has about "+str(file_words_nums)+" words.") file_names = [‘guest_book.txt‘,‘book.txt‘,‘guest.txt‘] for file_name in file_names: count_words(file_name)
相关推荐
YENCSDN 2020-11-17
lsjweiyi 2020-11-17
houmenghu 2020-11-17
Erick 2020-11-17
HeyShHeyou 2020-11-17
以梦为马不负韶华 2020-10-20
lhtzbj 2020-11-17
夜斗不是神 2020-11-17
pythonjw 2020-11-17
dingwun 2020-11-16
lhxxhl 2020-11-16
坚持是一种品质 2020-11-16
染血白衣 2020-11-16
huavhuahua 2020-11-20
meylovezn 2020-11-20
逍遥友 2020-11-20
weiiron 2020-11-16