Skip to main content

Ready for Python???

Hey Folks!Welcome to this Python Blog!!

Irrespective of new to Programming Language, willing to dive into Python..?
Cheers! Yes you are at one of the right places!! Yes you are right with your will and decision, and without wasting much of your time,

-> Let me brief somenotable features why to choose python in more simple words and then speak in programming language words...

> It has a good attractive style syntax, makes the programs to write easier to read.
> Is an easy-to-use language that makes it simple to get your program working.
> This makes Python ideal for ad-hoc(as and when required) programming tasks, without compromising maintainability.
> It has large standard library that supports many common programming tasks readymade and handy.
> Python's interactive mode is an easy way to test small snippets ofcode.Jupyter Notebook users knows this.
> Platform Independant(can run on any platform (including Mac OS X, Windows, Linux, and Unix).
> The main point to be considered is this is availabe to use in your android/ios with an unofficial build version!That makes user run their program anywhere anytime
> This is a free software in two senses.
1.It doesn't cost anything to download or use Python, or to include it in your application.
2.Can also be modified andre-distributed because while the language is copyrighted it's available under an open-source license..
Ahha!Does this not sound really interesting?

-> Lets see some Programming Language features:

> variety of basic data types are available:
numbers (floating point, complex, and unlimited-length long integers), strings (both ASCII and Unicode), lists, and dictionaries.
> Python supports object-oriented programming with classes and multiple inheritances.
> Single Code can be grouped into multiple modules and packages.
> Python supports raising and catching exceptions, brings up cleaner error handling.
> Data types are strongly and dynamically typed. Mixing incompatible types (e.g. attempting to add a string and a number) causes an exception to be raised, so errors are caught sooner.
> Python's automatic memory management frees you from having to manually allocate and free memory in your code.
> Going further we see the Simple short programs, gradually increasing in length, which shows off Python's syntax and readability.
# Writing Pythonic code is not hard you just have to use a shorter way to do it:)

Looking forward to see you in the immediate posts..Happy learning:)


x = 5;
y = 6;
z = x + y;

Comments

Popular posts from this blog

Quick Start -REPL

Exploring The Python REPL Today We have many IDEs and Many Python program running applications developed and known for ease of use and diverse features. But Working in the terminal is what it is preferred and it is considered as an effective way to learn as a coder. Also it is not the best way to do but one of the best ways to do:) With your terminal open and the Python Interactive shell started, you’ll see a command prompt consisting of three arrows (>>>). The code follows after it. Type 10 in the terminal Exploring The Python REPL With your terminal open and the Python interactive shell started , you’ll see a command prompt consisting of three arrows ( >>> ). Just to be absolutely clear, you don’t type in the three arrows, only what follows after it. Now type in the number 10: >>> 10 10 What happened? Remember we are in a REPL, which is short for Read-Evaluate-Print-Loop: R ead: Python reads 10 E valuate: Python evaluates this input and decides...

Installing Visual Studio(VS Code)

Installing VSCode: How to install and run on Windows, Linux, and MacOS February 1, 2022 Now you know why VSCode is awesome , and why it’s probably the best choice for you too. You probably can’t wait to install VSCode, right? We’ll explore different ways of installing VSCode and how to start it. Table of contents Installing VSCode Starting VSCode Installing VSCode Just like when installing Python , there are a number of ways to install VSCode. Download from the official site VSCode can be downloaded for free from this website . It’s available for the following platforms: Windows Linux MacOS Make sure you download the correct binary for your platform. The website tries to detect your platform automatically and offer the correct link, so that shouldn’t be too hard! After downloading, open the file and follow the steps to install it on your system. Use OS specific package manager On Linux and MacOS, you can use good alternatives to inst...