Check Python string in string with contains, find and % functions

Python string in string contains find

Wondering how to check for a substring in with Python string in, contains, and find functions? Here’s a guide that explains all functions with examples. There are several methods in python that can resolve this problem. Let’s discuss each method more deeply with explanations, and programs. We have written a few more articles if you … Read more

Git installation on windows 10 tutorial easiest way possible

Git installation on windows

Wondering how to do Git installation on windows? Here’s a tutorial that will help you to install git on windows 10 fastest way. What is VCS? Version Control systems(VCS) were started as a software development tool, but nowadays almost every development team(be it hardware or software) uses one. Version Control(VC) allows us to manage changes … Read more

ls / is command in Linux explained easiest way with Examples

ls is command in linux

Many people starting with Unix/Linux refer ‘ls’ as is command in Linux. I observed this question asked multiple times in one of the Ubuntu forums. Since ls command is one of the most widely used Linux commands a UNIX developer would encounter. Therefore it becomes of utmost importance to understand the command in and out. … Read more

Check if JavaScript array is empty, null or undefined in 4 ways

JavaScript array is empty

It is very easy to check if JavaScript array or object is empty but might need additional checks if you want to also check for null or undefined. [su_note note_color=”#FFF9C4″]For checking the emptiness of an array we will use array.length property in most of our examples. It returns the number of elements present in the … Read more