Python – Introduction – Datatypes

Programming Paradigms - கருத்துரு Python --> is a multi programming paradigms 1. Functional Programming features - C, Python 2. Object Oriented Programming --> Compilers C++, C#, Java, Python 3. Scripting…

Python Recursion

Learn with this blog how to work On Python Recursion Function and Examples. Python Recursion: A function is said to be a recursive if it calls itself. For example,  lets say we…

Python 3 String Methods

This blog explains about Python 3 String Methods and Example programs String Methods capitalize() – Converts the first character to upper case. capitalize() – Converts the first character to upper case. casefold() –…

Compound data types in Python

In Python, compound data types allow you to group and manage multiple values under one variable. This makes your code cleaner, more readable, and highly efficient—especially when working with collections…