I'm trying to pass input into subprocess to run a system command which when ran should put my interface into monitor mode. But it's not doing that it's just printing as if I just typed command airmon-ng by it self with no args
Here's what I have
import subprocess
a = raw_imput("Enter interface name")
opt = subprocess.call(["airmon-ng","start", a], shell=False)
I new to python and just became interested in learning python.