Segunda Publicación Semestre i

El último día de clases oficialmente fue el jueves 3 de mayo, sin embargo siempre al final de cada semestre se acumula la tensión y estrés debido a los proyectos finales, exámenes y otros pendientes que los estudiantes puedan tener, no solo escolares si no también familiares o incluso personales, en una edad todavía crítica […]

Read more "Segunda Publicación Semestre i"

Primera Publicación Semestre i

Justo antes de empezar con esta publicación, no tenía idea de cual sería el medio para publicarla, podría ser un archivo en Google Docs, un blogspot o algo por el estilo. tiempo después recordé que tenía un blog para mi primer semestre de universidad, cuando cursé la materia de Fundamentos de Programación (#TC101) con Ken […]

Read more "Primera Publicación Semestre i"

#TC101

Siento que es raro decirle semestre a este largo viaje que recorrimos cuando en realidad solo duro 3 meses y medio, he aprendido bastante desde principios de agosto sobre programación, suelo entender todos los conceptos y funciones de comandos, pero lo que me falta desarrollar es la creatividad al momento de escribir un código y […]

Read more "#TC101"

Range

Range is a value given from a sequence, it s hard to explain but i´llt try. We have two sets of parameters, range(stop) and range(start, stop, step.   In the first one range stop, there are number of intgers to generate starting from zero. And we have other range(start,stop,step) the Start indicates the starting number […]

Read more "Range"

Writing

There´s another way to write down notes without using Word, LibreOffice, Notepad or any other famous text editors….. You can now create your very own text files with Python3, and it is pretty easy, you may only need a command o do it which is .write(“Whatever You Want”) You may also wanto to create a […]

Read more "Writing"

Reading

Just learned how to open .txt files on the terminal using python 3, it is very easy to use, you will feel like a hacker just to open a file for reading it. the comand we need is open(“filename.txt”) VERY IMPORTANT! The .txt files and the .py file must be in the same directory in […]

Read more "Reading"

You can´t do that

Today´s blog is about validation of the user input, before starting with this topic, we need to know what is data validation. data validation: Making sure that a program operates based on clean, correct and useful data. data validation in programming is needed to continue procedures, for example if a program is asking for an […]

Read more "You can´t do that"

Whats My Age Again?

On last Friday October 21th the band Blink-182 posted a music video of their new song “She’s Out Of Her Mind” which is a tribute to their famous music video from 1999 “What’s My Age Again”, which is very known video because of it’s funny content of the members of the band Tom, Mark, and Travis running naked […]

Read more "Whats My Age Again?"

El IQ no lo es todo #FactorTec

Una alumna Licenciatura en Animación y Arte Digital  (LAD) del Tec de Monterrey se mostró ofendida por una imagen publicitaria de esta institución, mostrando la frase “El IQ no lo es todo”  acompañada de la imagen de una mujer apreciando una colección de obras plásticas, la estudiante incluso define su carrera como “una carrera alternativa” puesto […]

Read more "El IQ no lo es todo #FactorTec"

[],(),{}

What are lists, tuples and dictionaries in Python 3? Lists: Like we already know a list in python is a list of values, each value is numbered starting from 0, it is possible to modify these lists by adding or removing informaiton. You use this [] Students = [“juan”,”pedro”,michael”,”jackson”]   Tuples: Pretty similar to lists, […]

Read more "[],(),{}"