我14歲,請原諒我的Python知識。我試圖讓使用if/else語句這樣這個節目,而我在學校(對學校的WiFi),將只運行:如何讓Python知道用戶連接到了哪個Wifi?
if ontheschoolwifi:
Keep running the program
else:
close the program because im not at school and wont need it
我想知道如何讓蟒蛇知道如何獲得它連接到的無線網絡。 預先感謝您的幫助:)
哪個操作系統?編程語言只是語言,但是WiFi是一個硬件接口,通常由操作系統來處理,並且非常寬泛地說,操作系統負責公開應用程序編程接口(API),程序用一種語言(比如Python)編寫用來查詢/與之交互。 – metatoaster
@metatoaster在運行Windows 10. – WaydeHall
看看這個線程及其鏈接的線程:[將我的Windows計算機與Python AP連接起來](http://stackoverflow.com/questions/14077835/associating-my-windows -computer-to-a-wifi-ap-with-python) – metatoaster