“Konvertieren Sie das Datum in die String in Python” Code-Antworten

datetime to string python

import datetime
t = datetime.datetime(2012, 2, 23, 0, 0)
t.strftime('%m/%d/%Y')
Juan David Morales Navarrete

datetime to string python

from datetime import datetime

now = datetime.now() # current date and time

year = now.strftime("%Y")
print("year:", year)

month = now.strftime("%m")
print("month:", month)

day = now.strftime("%d")
print("day:", day)

time = now.strftime("%H:%M:%S")
print("time:", time)

date_time = now.strftime("%m/%d/%Y, %H:%M:%S")
print("date and time:",date_time)
Powerful Partridge

Konvertieren Sie das Datum in die String in Python

# import the date class
from datetime import date

# function of date class
today = date.today()

# Converting the date to the string
Str = date.isoformat(today)
print("String Representation", Str)
print(type(Str))
Outrageous Ostrich

Konvertieren Sie das Datum in die String in Python

# You can use Numpy's datetime_as_string function.
# The unit='D' argument specifies the precision, in this case days.

t = numpy.datetime64('2012-06-30T20:00:00.000000000-0400')
numpy.datetime_as_string(t, unit='D')

Mckynde

Ähnliche Antworten wie “Konvertieren Sie das Datum in die String in Python”

Fragen ähnlich wie “Konvertieren Sie das Datum in die String in Python”

Weitere verwandte Antworten zu “Konvertieren Sie das Datum in die String in Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen