0

有人可以帮助我了解 Python 中的本地 NTP 服务器。python代码如下:

import ntplib
from time import ctime
while True:
 try:
  c = ntplib.NTPClient()
  response = c.request(host='192.168...',port=2947)
  print(response)
  print(ctime(response.tx_time))
 except Exception as e:
    print(e)

当我运行此代码时,输​​出未返回从 192.168 收到的响应...。

4

0 回答 0