python
string-concatenation
Knowing how to manipulate strings this way will be of great use to us in our programming journey. In this article, we will dive into the many ways how to split a string in Python.
Read articlepython
power
square
On how to square a number in Python we explore different ways that includes pow(), math.pow, the power operator (**) as we create as well our own function to receive exactly this squared value
Read articlegit
github
Cloning is the fastest way to download a project or code, in this lessons we will explain how to clone and the difference it has with forking
Read articlepython
command-line
In our step-by-step guide on how to update Python in terminal, we explore the most straight forward methods to successfully update Python version in Linux, MacOs and Windows systems
Read articlepython
Java
javascript
On RegEx for whitespaces we'll be discussing the different ways to detect whitespaces using regular expressions. RegEx has more than one way to search in a given text for these characters and we'll be giving an example with the most used one
Read articlecommand-line
This document will provide a guide on how installing nvm and node.js for Windows environment
Read articlepython
exit
Exiting Python from the terminal can be achieved in 3 different ways. The exit and quit commands will exit python and you can as well exit by using keyboard shortcuts as ctrl+z and ctrl+d on Windows and Unix Based Systems respectively
Read articlepython
One of the logic operator in Python is the double equal sign. This operator is used to check if one value is equal to another given value and it'll check value and type of the data
Read articlepython
In Python, the # symbol is used for commenting a single line of code. It´s possible to use this character to comment multiple lines, but you'll need to put one by one. If we want to comment multiple lines in a more simple way, then we use the 'docstring' method.
Read articleJava
javascript
Java and Javascript are completely different programming languages even though people gets confused a lot.
Read article