次の例を検討してください-
Python 2.4.3 (#1, Jan 14 2011, 00:20:04)
[GCC 4.1.2 20080704 (Red Hat 4.1.2-48)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import os
>>> os.system("grep -i beatles blur.txt")
Blur's debut album Leisure (1991) incorporated the sounds of Madchester and shoegazing. Following a stylistic change.influenced by English guitar pop groups such as The Kinks, The Beatles and XTC.
0
>>> os.system("grep -i metallica blur.txt")
256
>>>
したがって、この場合、検索したキーワードを含む行をPythonシェルに出力したくないので、戻り値、つまりキーワードが存在する場合は0、存在しない場合はゼロ以外の値が必要です。それを達成する方法は?