CodeSteps

Python, C, C++, C#, PowerShell, Android, Visual C++, Java ...

Author : Shijit

Python – Parsing command line

Most of the Applications support command line Arguments, to do some actions based on the given values. For example, when you type “explorer .” at Windows command prompt; it will open Windows Explorer showing the Current Folder content. In this article, I am going to explain the parsing command lines using a sample Python program. […]

Python – Simple and Compound Statements

We write code blocks in Python and each code block contains sequence of statements. We classified these statements as simple and compound statements. Python program contains collection of these statements; assignments, expressions, computations, functions, loops etc.,. In this Article, I am going to explain; Simple and Compound statements in Python. Simple Statements The statements which […]

Python – Classes and Functions

Python is an Object Oriented language. That means, everything is an Object in Python. Python supports Classes and Functions. In this Article, I am going to explain, how to define & use Functions and Classes in Python. Before I start with Classes, first will discuss with Functions. Functions Functions are the code blocks and defined […]

Scroll to top