You've already forked Curso-lenguaje-python
Restructure content and add notes from HolaMundo
Signed-off-by: Manuel Vergara <manuel@vergaracarmona.es>
This commit is contained in:
15
python-total/dia_08/04_probando_pylint.py
Normal file
15
python-total/dia_08/04_probando_pylint.py
Normal file
@@ -0,0 +1,15 @@
|
||||
"""
|
||||
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)
|
||||
Reference in New Issue
Block a user