#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"

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"

[],(),{}

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 "[],(),{}"

Mixing It Up

In this code we are going to learn how to turn a string object into a list and also how to make a total new sentence by mixing up in a random order all the characters in it. First we need to import the random library, then the sentence we want to mix up, it may […]

Read more "Mixing It Up"

Without Vowels

This mini program consists of converting any sentence the user gives in the same sentence but without vowels. For example, making the famous sentence: The quick brown fox jumped over the lazy dog The qck brwn fx jmpd vr th lzy dg to do this we need a list with our vowels vowels = (“a”,”e”,”i”,”o”,”u”) and […]

Read more "Without Vowels"

Dice

A month without posting any new blogs because of different reasons i’m back with some mini projects I’ve been developing since the beginning of the partial, this is the first one which is a program that rolls a dice, a very simple code. To do this program we need to import the random library, next […]

Read more "Dice"

Taschenrechner

A time ago I made a little project, which is kind of a pocket calculator. A program that lets you make additions, subtractions, divisions and multiplications. Let’s see how that works… I wanted a nice menu, a nice welcome to my program, for that I made some prints at the beginning to, and immediately the […]

Read more "Taschenrechner"