Does it save ram in Python if instead of doing:

PHP Code:
import subprocess 
I do:

PHP Code:
from subprocess import call 
(subprocess and call are just examples)

Assuming I just need to use call...