import this Beautiful is better than ugly.Explicit is better than implicit.Simple is better than complex.Complex is better than complicated.Flat is better than nested.Sparse is better than dense.Readability counts.Special cases aren't special enough to break the rules.Although practicality beats purity.Errors should never pass silently.Unless explicitly silenced.In the face of ambiguity, refuse ..
다운로드 : === 소스코드 === import socket print(""" ========================== Open port Ver 0.0.1 Beta ========================== * 서버 아이피(또는 주소) 를 입력, 포트를 선택하면 해당포트가 열렸는지 확인해줍니다. * 네트워크 상황과 구조에따라 작동하지 않을 수 있습니다.""")while True: ipadress = input("서버 IP : ") port = input("서버 Port : ") s = socket.socket() socket.setdefaulttimeout(0.5) #접속실패 지연시간 try: s.connect((str(ipadress),int(port))) print("%s 서버에 %s번 ..