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.

Python 3 Print() Function in Detail

0
In this article, we will learn about A basic thumb rule to remember Print function with Single and Double Quotes Printing Variables using print()...

String Literals in Python

0
This article explains what is string literal and what are the different ways to assign strings literal to a string variable using single and...

Type casting in Python

0
In this article, we will learn about What do you mean by Type Casting Why do we need Type Casting How to perform Type...

Datatypes and Variables in Python

0
In this article, we will learn about: Why we need data types How data is stored in the Program Different data types that are...

Comments in Python

0
How to write a comment in Python Use a hash character # at the beginning of the text to write a comment in Python. Hash...