Sunday, June 14, 2026

Learn Python Basics

Python basics will help you grasp the concept of Python programming features by exploring the syntax & semantics of Python 3 by implementing Practice Programs. It covers all the basic concepts such as comments, data types, type casting, string literal, print function, input function, passing arguments, operators, logic and flow control, if else condition, for loop, while loop, functions, scope of a variable, file handling, built-in functions, strings, list, tuple, set, frozenset, dictionary, importing a module, classes and objects.

Working With Strings in Python 3

0
In, this article we will learn how to manipulate strings and also discuss some functions to handle strings. Accessing String using the concept of Array As...

Important Built in Function in Python 3

0
In this article, we will discuss important built-in function in Python 3. type() function in Python Role of type() Function: The type() returns the type of...

File handling in Python 3

0
Earlier you have learned about how to get input from the user using input and argv method. In this article, you will learn about how...

Scope of a Variable in Python 3

0
In this article, we will discuss an important concept, the scope of a variable in Python 3. In Python, there are four scopes possible...

Functions in Python 3

0
In this article, we will learn how to define functions, using the function with variables and function returning value. In Python, we define a function...

Flow Control in Python 3

0
In this article, we will discuss if block, if-else block, if-elif-else block. Then we will discuss, While and For loop in Python 3 Programming. Python...

Boolean Operators in Python 3

0
In this article, we will discuss Python Booleans Boolean represents one of two values: True or False. In Python when you evaluate an expression using...

Operators in Python 3

0
In this article, we will learn about various Python operators divided into the following categories: Arithmetic operators Assignment operators Comparison operators Logical operators Identity...

Input method to pass variable to Python Script

0
We have already discussed input() function which is a builtin function in Python 3. In this article, we will explore another method which one...

Input function in Python 3

0
In this article, we will learn about Python 3 builtin function: input() You can simply use input() function for input data, the data entered using...