Curso-lenguaje-python/python-total/dia_08/05_probando_pylint/practica_pylint.py

13 lines
166 B
Python
Raw Normal View History

2023-04-12 21:59:15 +02:00
"""
Esto es un comentario
"""
def sumar(numero1, numero2):
""" Comentando tal y tal """
return numero1+numero2
SUMA = sumar(5, 7)
print(SUMA)