Dalam Python, terdapat berbilang kaedah untuk mendapatkan masa semasa. Satu pilihan yang mudah ialah menggunakan modul datetime.
# Import the datetime module import datetime # Get the current datetime object now = datetime.datetime.now() # Print the datetime object print(now) # Output: datetime.datetime(2023, 3, 8, 14, 35, 22, 123456)
Untuk mendapatkan hanya masa jam tanpa tarikh, anda boleh menggunakan:
# Get the current clock time current_time = now.time() # Print the clock time print(current_time) # Output: time(14, 35, 22, 123456)
Untuk memudahkan kod anda, anda boleh import objek datetime terus dari modul datetime:
from datetime import datetime # Get the current datetime object now = datetime.now()
Pendekatan ini menghapuskan keperluan untuk menggunakan datetime. awalan apabila memanggil fungsi modul datetime.
Atas ialah kandungan terperinci Bagaimana untuk Mendapatkan Masa Semasa dalam Python?. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!