Looping and Iterations in Python

Lets enter into the one of the most important topics in python: Looping. Looping or Iteration means repetition of a certain part of code for a number of times until a condition is met(till ... Continue Reading →

Python: Conditional Constructs:if-else..

We have completed very basic of Python til now. In some situations depending on the conditions the set of codes will be executed. In python, we have conditional constructs which will ... Continue Reading →

Round 3 of strings in Python

Few methods of working with strings:String Methods Python is an object-oriented language as we know, so every data and functions are also functions. Data types such as Strings, list ... Continue Reading →

Round 2 of Strings in Python

In the last blog, we had discussed on strings literals and their basic operations. Now, In round 2 of strings we will be discussing on slicing the string, Slicing and Indexing What ... Continue Reading →

String Enters the Arena

The next Superpower of Python which we are going to study is “Strings”- a text based information which is a collection of ordered collection of characters. In this Blog we are ... Continue Reading →

How to Save and Run Python Program in IDLE

Some of us might not know how to work with IDLE. so let me quickly through how to deal with IDLE saving of program and executing them. Hope you have by now IDLE installed in your system. ... Continue Reading →
python-icon

Working with Functions and modules in Python

Sandesh Yadav LinuxCandy mentioned.   A function is a block of code that performs a specific action and returns a result. How functions make your life easier? Functions let ... Continue Reading →
python-icon

3.Numbers and Arithmetic in Python

We can perform various operations in Python like addition, subtraction, Multiplication, Division, etc. [python] >>>>5+8 13 >>>6-4 2 >>>>5*5 25 2 >>>9%4 1 [/python] what ... Continue Reading →
pythonw

Which Python IDE is best ? Choose your own!

Before we move onto writing programs in Python, we will be needing an Editor to write the source files. But many of us will be having a confusion here, whether to choose an IDE or ... Continue Reading →
python-icon

Installing Python

Installing Python Since am a member of open source community, let me first show you how to install Python in your Linux/Ubuntu then will move on to Windows. Linux: If you are using ... Continue Reading →