Advertisement
teslariu

Untitled

Nov 30th, 2020
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.47 KB | None | 0 0
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. #
  4. """
  5. a) Programa que pide un año y devuelve si es bisiesto o no:
  6. Ej:
  7. >>> Ingrese un año: 2020
  8. >>> 2020 es bisiesto
  9.  
  10. AYUDA: un año es bisiesto si:
  11.    1) es divisible por cuatro y no es divisible por 100
  12.    2) es divisible por 100 y no por 400
  13.  
  14. b) Programa que pasa de km/h a m/s y viceversa:
  15.  
  16. >>> Ingrese una velocidad: 35
  17. >>> Ingrese una unidad de medida (1: km/h, 2:m/s): 2
  18. >>>  35 m/s equivalen a ....km/h
  19.  
  20. """
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement