13 lines
166 B
Python
13 lines
166 B
Python
"""
|
|
Esto es un comentario
|
|
"""
|
|
|
|
|
|
def sumar(numero1, numero2):
|
|
""" Comentando tal y tal """
|
|
return numero1+numero2
|
|
|
|
|
|
SUMA = sumar(5, 7)
|
|
print(SUMA)
|