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
Post a Comment