La función ctime() se usa para devolver una string que contiene la fecha y la hora.
Sintaxis: ctime()
Parámetros: Esta función no acepta ningún parámetro.
Valores devueltos: esta función devuelve una string que contiene la fecha y la hora.
- La string tiene una longitud de 24 caracteres.
- La semana se imprime como una palabra de tres letras.
Sun, Mo, Tue, Wed, Thu, Fri, Sat
- Los meses se representan como letras de tres dígitos.
Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec
- El día del mes se representa como un número de dos dígitos
- El tiempo se representa en formato HH:MM:SS
- el año es un numero de 4 digitos
Ejemplo 1: obtener una string que contiene la fecha y la hora
Python3
# Python3 code to demonstrate # Getting a string containing # the date and time # Importing datetime and time module import datetime import time # Calling the time() function # to return current time Todays_time = time.time() # Printing today's time print(Todays_time) # Calling the fromtimestamp() function # to get date from the current time date_From_CurrentTime = datetime.date.fromtimestamp(Todays_time); # Printing the current date print("Date for Timestamp used is: %s"%date_From_CurrentTime); # Calling the ctime() function over the above date print("Today's date: %s"%date_From_CurrentTime.ctime());
Producción:
1627282355.0111642 Date for Timestamp used is: 2021-07-26 Today's date: Mon Jul 26 00:00:00 2021
Ejemplo 2: obtener una string que contiene la fecha y la hora
Python3
# Python3 code to demonstrate # Getting a string containing # the date and time # Importing datetime module import datetime # Initializing a date object for a # different date Date = datetime.date(2013, 2, 10); # Calling the ctime() function # over the above date print("The date: %s"%Date.ctime());
Producción:
The date: Sun Feb 10 00:00:00 2013
Publicación traducida automáticamente
Artículo escrito por Kanchan_Ray y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA