-
Notifications
You must be signed in to change notification settings - Fork 69
Open
Description
hi , how i solve the problem in line 4, i recieve an error (python):
`import subprocess
results = subprocess.check_output(["netsh", "wlan", "show", "network"])
results = results.replace("\r", "")
ls = results.split("\n")
ls = ls[4:]
ssids = [] #there we will store our ssids
x = 0
y = 0
while x < len(ls):
if x % 5 == 0:
ssids.append(ls[x])
x += 1
while y < len(ssids):
print (ssids[y])
y += 1
`
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels