Import time意思

在Python中,import time 這條語句用於導入Python的標準庫中的time模組。這個模組提供了一系列函式和方法來處理時間相關的操作,例如獲取當前時間、時間戳、日期和時間格式化等。

以下是一些time模組中常用函式的例子:

  1. time.time():返回自1970年1月1日(UTC)以來的浮點數秒數,即當前時間的時間戳。

    import time
    current_time = time.time()
    print(current_time)
  2. time.localtime(t):將時間戳轉換為本地時間的struct_time對象。

    import time
    local_time = time.localtime(time.time())
    print(local_time)
  3. time.strftime(format, time):使用指定的格式字元串format將時間time(可以是時間戳或struct_time對象)格式化成字元串。

    import time
    formatted_time = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime(time.time()))
    print(formatted_time)
  4. time.sleep(seconds):讓當前執行緒休眠指定的秒數seconds。

    import time
    time.sleep(1)  # 讓程式暫停1秒

使用import語句導入模組後,就可以在代碼中直接使用模組中的函式和變數,而不需要使用模組的前綴。如果想要使用模組中的某個具體函式,也可以使用from module import function這樣的形式進行導入。