from datetime import datetime, timedelta def unset (): NOW = datetime.now(); YEST = datetime.now() - timedelta(days=2) print(NOW) print(YEST) print(YEST.strftime('%d%m%m')) def calcIva(num,por=2): print( num*por ) def mode(): fruta = "32" tipo=type(id(fruta)) print(tipo) # unset(); # calcIva(5, 10); mode()