Advertisement
LucasCiappa97

Ciapparelli_Ejercicio7

Mar 30th, 2020
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.23 KB | None | 0 0
  1. print('Pedir una numero del 0 al 9999')
  2. n= int (input())
  3. if n<10:
  4.    print('tiene una cifra')
  5. elif n<100:
  6.     print('tiene dos cifras')
  7. elif n<1000:
  8.     print('tiene tres cifras')
  9. elif n<10000:
  10.     print('tiene cuatro cifras')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement