Sunday, June 14, 2026
Home Learn Python Basics

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.

What does // operator mean in python?

0
What does // operator mean in python? The // operator is used for floor division. It is similar to integer division as it returns the...

What is a keyword in python?

0
What is a keyword in Python: Definition Keywords are built-in reserved words that come with Python language. You cannot use the reserved keyword as an...
Python lessons

Python lessons

0
Python lessons with example tutorials cover all the basic and intermediate concepts of Python 3 programming. All Python lessons and tutorials in this free...

Python code to reverse an integer number

0
Python code to reverse an integer number.   Python code implementation without user defined functions & classes Code:  #Take an integer number a = 34502 #Convert the number in to...

Python 3 Class Implementation: Inheritance, Encapsulation, Composition

0
Working With Classes Before proceeding to build Packages in Python, we would like to discuss classes and how to write classes in our Python Program. What...

Working with Modules in Python 3

0
Working With Modules   Before proceeding to learn classes in Python, we would like to discuss modules and how to import modules in our Python Program. What...

Working with Dictionaries in Python 3

0
Working with Dictionaries Dictionary can store data like lists but instead of using only numbers to get the data, you can use almost anything. A...

Working with Tuples in Python 3

0
Working with Tuples Unlike Lists, Tuples are immutable lists, that cannot be modified. A Tuple is created by placing all the items (elements) inside ()...

Working with Sets and Frozensets in Python 3

0
Working with Sets You can think of sets in python equivalent to sets in Mathematics. A set is created by placing all the items (elements)...

Working with list in Python 3

0
Working with list List literals are enclosed within square brackets. A list can store data in the form of a string literal, integer or any...