string de contagem preguiçosa por python


! / usr / bin / python



import sys



argvs = sys.argv



if len (argvs)! = 2:

imprimir 'uso: $ python% s [nome do arquivo]'% argvs [0]


sys.exit (1)



line = ""

buffsize = 1024 * 1024 * 1024 # 1GB buffer


enquanto True:


buff = f.read (buffsize)


line + = buff


if len (buff)! = buffsize:


break



a linha de impressão é% s. '% line.count (' [# @@@@ #] ')

</pre>