Category: Programming

Misunderstanding isset() behavior in PHP

The isset() function in PHP is often misunderstood, leading to errors and unintended outcomes in code. In this article, we will delve deeper into the workings of isset() and show…

Python Basics

This is a quick introduction to the basics of python programming language. It covers python3. Variables See the following program. Save as datatype.py: To run Output Casting between string, int,…

Object-Oriented Python

Python is a fully object-oriented programming language but it can also be used for scripting. It is assumed that you are already familiar with object-orientation concepts and have experience writing…