import ntplib from time import ctime time_server = 'time.windows.com' # URL 또는 IP 지정 가능 ntp_client = ntplib.NTPClient() response = ntp_client.request(host=time_server, version=3) print(response) print(type(response)) print(response.recv_timestamp) print(type(response.recv_timestamp)) print(ctime(response.tx_time).) print(f"NTP 서버와 Local Time의 오차는 {response.offset:.2f}초 입니다.") 참고 사이트 - https://py..