Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- def promedio(lista):
- return sum(lista)/len(lista)
- def ingresar_natural():
- while True:
- natural = input("Ingrese un número entero: ")
- if natural.isdecimal() and natural!="0":
- natural = int(natural)
- return natural
- else:
- print("Error, debe ingresar un nro natural")
Advertisement
RAW Paste Data
Copied
Advertisement