Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- from datetime import datetime
- from pytz import timezone
- fecha = datetime(2013, 3, 14, 17, 23, 29)
- print('Fecha base:', fecha)
- bogota = timezone('America/Bogota')
- bogota_fecha = bogota.localize(fecha)
- print('Fecha Bogotá:', bogota_fecha)
- singapur = timezone('Asia/Singapore')
- singapur_fecha = bogota_fecha.astimezone(singapur)
- print('Fecha Singapur:', singapur_fecha)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement