If Sin Else en una Línea de Python

Crear hermosas sentencias de una línea en Python es tanto un arte como una ciencia. En este tutorial, aprenderás a comprimir una sentencia if sin una cláusula else en una sola línea de código de Python. Problema: ¿Cuál es el equivalente de una sola línea de la sentencia if simple sin una cláusula else? Aquí … Read more

Cómo determinar el tipo de un objeto en Python

Planteamiento del problema Cada objeto de Python es de un cierto tipo, también llamado “clase”. La clase es un esquema que muestra los datos y capacidades de cada objeto/instancia que se crea a partir de este esquema. Dado un objeto de Python (=instancia). ¿Cómo determinar/comprobar/obtener su tipo (=clase)? Hay muchas variantes de esta pregunta: Cómo … Read more

Build Website with Flask – Part 3

This is part of our Flask series: Build Website with Flask – Part 1 Build Website with Flask – Part 2 Build Website with Flask – Part 3 Build Website with Flask – Part 4 Build Website with Flask – Part 5 Build Website with Flask – Part 6 Build Website with Flask – Part … Read more

Python Random Word Generator Game

I found a question on a Random Word Generator game on the question and answer site StackOverflow.  The question contained a small runnable version of the game code. The author’s question was: where to find large English word lists on the internet? Getting this large list of words would add good game replay value to … Read more

Build Website with Flask – Part 1

This is part of our Flask series: Build Website with Flask – Part 1 Build Website with Flask – Part 2 Build Website with Flask – Part 3 Build Website with Flask – Part 4 Build Website with Flask – Part 5 Build Website with Flask – Part 6 Build Website with Flask – Part … Read more

Build Website with Flask – Part 2

This is part of our Flask series: Build Website with Flask – Part 1 Build Website with Flask – Part 2 Build Website with Flask – Part 3 Build Website with Flask – Part 4 Build Website with Flask – Part 5 Build Website with Flask – Part 6 Build Website with Flask – Part … Read more

Pagination in Webscraping

❖ Disclaimer: This tutorial considers that you have the basic knowledge of web scraping. The purpose of this article is to educate you on how to scrape content from websites with pagination. The examples and theories mentioned in this tutorial are solely for educational purposes and it is considered that you will not misuse them. In case … Read more

Display The Time In A Different Time Zone

Summary: You are recommended to use the pytz library because of its efficiency and effectiveness in displaying time in a different time zone in Python. However, it would be best to understand the datetime module because it plays a massive role in date and time manipulation. Introduction Displaying the time in a different time zone can be … Read more

CSV to SQLite3

Story: Assume you work for the Finxter Academy. Your boss asks you to import an existing CSV file containing fictitious users to SQLite3. What is SQLite3, you ask! SQLite3 is an ANSI-C source-code file that offers a light-weight database with the following qualities: Easy to compile and incorporate into projects. No external dependencies. Supports cross-platforms. … Read more