“no dia seguinte em Python sem usar o DateTime” Respostas de código

um dia antes de hoje Python DateTime

from datetime import datetime, timedelta
    
d = datetime.today() - timedelta(days=days_to_subtract)
Xenophobic Xenomorph

Python Set Day of Date para 1

from datetime import datetime

your_date = datetime.strptime('26 June 2021', '%d %b %Y')
# Using the .replace() method:
newdatetime = your_date.replace(day=1)
# 2021-06-01 00:00:00
Powerful Penguin

no dia seguinte em Python sem usar o DateTime

import datetime                                 
from datetime import timedelta                  
                                                
d = int(input('enter the day: '))               
m = int(input('enter the month: '))             
y = int(input('enter the year: '))              
                                                
today = datetime.date(y, m, d)                  
tom = today + timedelta(days=1)                 
print('next day is', tom)                       
Amna Rafique

Respostas semelhantes a “no dia seguinte em Python sem usar o DateTime”

Perguntas semelhantes a “no dia seguinte em Python sem usar o DateTime”

Mais respostas relacionadas para “no dia seguinte em Python sem usar o DateTime” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código