2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

No.043【Python】pass文の定義と使用方法

Posted at

python-logo-master-v3-TM-flattened.png

今回は、pass文ついて書いていきます。

I'll write about "pass contexts"

■ pass文とは

 Definition of pass contexts

 pass:ヌル操作のため、pass を実行されても、何も起きない。
 構文法的には文が必要。コードとしては何も実行したくない場合はPlace holderとして使用可能
 Python:関数定義のdef文や条件分岐のif文などでは中身の省略は不可
 記述する必要があるが、何も実行させたくない場合にpass文を使用する

■ pass文とcontinue文の違い

 Differences between pass and continue contexts

>>> # while またはfor ループで使われるcontinue文
>>> # それ以降の処理を行われない → continue文の後に記述された処理は実行されない
>>> 
>>> for i  in range(5):
	print(i)
	if i == 1:
		continue
		print("CONTINUE")

		
0
1
2
3
4
>>> # pass文の場合
>>> # pass文の後の記述は、処理が続けて実行される
>>> 
>>> for i in range(5):
	print(i)
	if i == 1:
		pass
		print("PASS")

		
0
1
PASS
2
3
4

■ 空の関数やクラスを定義

 Definition of blank function and class

>>> # 関数またはクラスの定義を先に行い、
>>> # 実装を後回しにする場合にからの関数やクラスを定義することがある
>>> # def文の中を何もないとエラーになる
>>> # pass文を書くことで、何もしない空の関数の定義が可能
>>> 
>>> def empty_func():
	pass

>>> # クラスの定義でも同様である
>>> 
>>> class EmptyClass():
	pass
>>> # 一行だけの場合はコロンの後に改行せずにそのまま書いても文法上問題ない
>>> 
>>> def empty_func_one_line(): pass
>>> class EmptyClassOneLine(): pass

■ 空のファイルを作成

 Create black files

>> # ファイルを新規作成する場合:with文と書き込みモードwのopen()を使う
>>> 
>>> # 通常:write()メソッドでファイルの内容を書き込む
>>> # pass文:空のファイルを作成できる
>>> 
>>> with open("temp/empty.txt", "w"):
	pass
>>> 
>>> 
>>> # 1行で書くことも可能
>>> 
>>> with open('temp/empty.txt', 'w'): pass

■ 条件分岐で何も実行しないことを明示

 Indicate nothing with conditional branch

>>> # 実装を後回しにsする場合
>>> # 何も実行しないことを明示し、コードの意図が分かりやすくする場合
>>> 
>>> a =6
>>> 
>>> if a % 2 == 0:
	print("Even")
else:
	pass

Even

■ 例外処理で何もしない場合

 The case of Exception handling with nothing

>>> # コード実行時にエラーが発生する時点で、エラーが出力され、処理が終了する
>>> 
>>> def divide(a, b):
	print(a / b)

	
>>> divide(1, 0)
Traceback (most recent call last):
  File "<pyshell#90>", line 1, in <module>
    divide(1, 0)
  File "<pyshell#89>", line 2, in divide
    print(a / b)
ZeroDivisionError: division by zero
>>> # tryを使うことで例外を捕捉
>>> 
>>> # 処理は終了せず、継続する
>>> 
>>> def divide_exception(a,b):
	try:
		print(a / b)
	except ZeroDivisionError as e:
		print("ZeroDivisionError: ", e)

		
>>> divide_exception(1, 0)
ZeroDivisionError:  division by zero

SyntaxError: invalid character in identifier
>>> # 例外を捕捉した上で何も処理しない場合は、pass文を使用する
>>> 
>>> def divide_exception_pass(a, b):
	try:
		print(a / b)
	except ZeroDivisionError as e:
		pass

	
>>> divide_exception_pass(1, 0)
>>> 
>>> 

随時に更新していきますので、
定期的な購読をよろしくお願いします。
I'll update my article at all times.
So, please subscribe my articles from now on.

本記事について、
何か要望等ありましたら、気軽にメッセージをください!
If you have some requests, please leave some messages! by You-Tarin

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?