1. Lấy ngày hệ thống
2. Lấy ngày, giờ hệ thống
3. Lấy thứ (weekday) của hệ thống:
Thực hiện:
1. Lấy ngày hệ thống
from datetime import date
today = date.today()
# dd-mm-YY
Hnay = "Hom nay: "
d1 = today.strftime("%d-%m-%Y")
print(Hnay, d1)
# Textual month, day and year
d2 = today.strftime("%B %d, %Y")
print(Hnay, d2)
# mm-dd-y
d3 = today.strftime("%m-%d-%y")
print(Hnay, d3)
# Month abbreviation, day and year
d4 = today.strftime("%b-%d-%Y")
print(Hnay, d4)
C:\python>python Demo.pyHom nay ngay: 16-07-2020Hom nay ngay: July 16, 2020Hom nay ngay: 07-16-20Hom nay ngay: Jul-16-2020C:\python>
2. Lấy ngày giờ hệ thống
from datetime import datetime
# datetime object containing current date and time
now = datetime.now()
dt_str1 = now.strftime("%Y-%m-%d_%H-%M-%S")
dt_str2 = now.strftime("%Y-%B-%d_%H-%M-%S")
dt_str3 = now.strftime("%Y-%b-%d_%H-%M-%S")
print(dt_str1)
print(dt_str2)
print(dt_str3)
C:\python>python Demo.py2020-07-16_14-16-162020-July-16_14-16-162020-Jul-16_14-16-16C:\python>
3. Lấy thứ (weekday) của hệ thống:
Code:
from datetime import datetime
now = datetime.now()
#Thứ mấy trong tuần, tên đầy đủ
print(now.strftime("%A"))
#Hoặc Lấy 3 ký tự đầu tiên của thứ
print(now.strftime("%a"))
#Hoặc Lấy 3 ký tự đầu tiên của chuỗi
dt_str = now.strftime("%c")[0:3]
print(dt_str)
Kết quả:
C:\python>python Demo.pyThursdayThuThuC:\python>
Bảng định dạng các biến lấy ngày giờ.
Xong!
No comments:
Post a Comment