#!/usr/bin/python3
# Import Subprocess module
from subprocess import Popen, PIPE
# Command to get size of all log files in "/var/log" directory
cmd = 'find /var/log/ -name "*.log" -exec du -sh {} \;'
output = Popen(cmd, stdout=PIPE, shell=True)
for line in output.stdout.readlines():
print(line.decode('utf-8'))