BLOG

Latest Articles

How to PROPERLY Join Lists in Python [10 Methods]

python join lists using 6 different methods including plus (+) operator, asterisk (*) operator, naive method, list comprehension, extend method and …

By bashiralam · 13 min read · Python

Master the Potential of Python Ternary Operator

The Python Ternary Operator is a type of condition expression in the Python programming language that allows the developers to evaluate statements.

By bashiralam · 18 min read · Python

Python Static Method Explained [Basics to Advanced]

Python static method is extremely similar to the python class-level method, the difference is that a static method is bound to a class rather than the objects …

By bashiralam · 12 min read · Python

20 netstat command examples in Linux [Cheat Sheet]

netstat command in Linux is used to get the list of listening TCP and UDP sockets. Get the list of ESTABLISHED, TIME_WAIT, LISTEN sockets with program name. Get …

By rohantimalsina · 10 min read · CheatSheet

SQL NOT IN Operator Explained [8 Practical Examples]

Examples of SQL NOT IN with Numeric list of values, String list of values, Date list of values, Subquery, columns, Update statement, Delete statement, HAVING …

By falgunithakker · 7 min read · SQL