Python tutorial

Python tutorial

Ejemplos básicos – Variables

# COMENTARIOS

"""
     COMENTARIOS

"""
print ("¡Hola mundo!")

variable= 'Mi valor es '
dato = 50
resultado = variable + ' = ' + str(dato)

print (resultado)
print ("===========\n" + "Estructura de datos: \n")

Lista = ['dato1','dato2','dato3']
print ("Total datos: " + str(len(Lista)))


for item in Lista:
     print(item, end=' ')

print ("\n o separado: ")
Lista.append('nuevo dato 4')


for item in Lista:
     print('-' + item)