Curso-lenguaje-python/python-total/dia_08/04_probando_pylint.py

16 lines
208 B
Python
Raw Normal View History

2023-04-12 21:59:15 +02:00
"""
Probando pylint
"""
def una_funcion():
"""Funcion con variable que retorna un número."""
numero1 = 500
return numero1
RESULTADO = una_funcion()
# Imprimimos la variable
print(RESULTADO)