Untitled
unknown
plain_text
a year ago
351 B
7
Indexable
from datetime import datetime
# Get the current date
data_atual = datetime.now()
# Define the birthday date
data_de_aniversario = datetime.strptime("30/06/2025", "%d/%m/%Y")
# Calculate the difference in days
faltante = (data_de_aniversario - data_atual).days
# Print the result
print(f'Faltam {faltante} dias para o meu aniversário')Editor is loading...
Leave a Comment