دریافت ساعت کنونی در پایتون: گاهی وقتا در یک پروژه پایتون نیاز دارید که زمان (ساعت) رو بخونید. برای اینکار راه های مختلفی وجود داره که یکی از ساده ترین روش ها استفاده از کتابخونه datetime
هست. به کد زیر توجه کنید:
from datetime import datetime
# now() method is used to
# get object containing
# current date & time.
now_method = datetime.now()
# strftime() method used to
# create a string representing
# the current time.
currentTime = now_method.strftime("%H:%M:%S")
print("Current Time =", currentTime)
خروجی کد بالا:
Current Time = 10:25:22
<p>
[/vc_column_text][/vc_column][/vc_row]