web programming blog

blog about web programming ❤️
excepciones en python exceptions in python

Python Exceptions

Python exceptions are a way to make our code robust and unbreakable. Learn how to handle exceptions in Python.

excepciones en python exceptions in python

validate id using Javascript

How to validate Spanish id using Javascript. Use javascript code to verify if the number and the letter of a Spanish id are correct.

excepciones en python exceptions in python

Draw a square with Python

Draw a square with Python thanks to the Turtle library. Follow the LOGO model for children to program in a didactic way

excepciones en python exceptions in python

Calculator with Python code

Python code how to do a calculator to be able to use the basic operations. Ideal for Python students who are starting to program

excepciones en python exceptions in python

Palindromes with javascript

How to verify palindromes with javascript code tutorial 2023. Palindromes are words or numbers that can be read from left to right or vice versa

excepciones en python exceptions in python

How to do IndexedDB API

Indexeddb API local database is a type of local storage en HTML5. IndexedDB tutorial for students who are learning HTML5

excepciones en python exceptions in python

Triangle with JavaScript

How to draw a Triangle with JavaScript code in two ways. One way looping with while and another way looping with for. JavaScript coding exercise

excepciones en python exceptions in python

Dictionary in Python

Dictionary in python is a collection of pairwise information in the format key:values . The correct syntax is { key: value }

excepciones en python exceptions in python

Exercises Python Lists

Post with exercises python lists to learn python with practical examples. Best way to learn a programming code is by doing exercises

excepciones en python exceptions in python

Create Polygons with Python

Learn how to create polygons with Python, using the Turtle module. We will also create a star with Python. We can create any type of polygons

excepciones en python exceptions in python

Python List Methods

Python list methods are very important for Python programming. Append, insert, pop, sort and many more

excepciones en python exceptions in python

Comprehension in Python

Comprehension in Python is an easy way to loop over a sequence with less code. It is also a more modern and ordered way to code