I\'m trying to use python Subprocess module to enable/disable Ethernet connection from python code. Below is my code in which the first step is looking for the available \"E
Use string formatting, interpolation, or concatenation:
x = 'Ethernet10' subprocess.call('netsh interface set interface ' + x + ' ENABLED')