Python Features

 

Python Features
Python Features

Hello guys! My name is Ankur Saxena! I am a writer, software developer, web developer, blogger, traveler and self-publisher. I self-study and R&D various subjects related to History, Geography, Indian Politics, Information Technology (I.T.), Science and Technology, Computer Programming and Web Development and also do writing work related to it. Some of which I publish for all of you readers through my blogging website ANKUR SAXENA BLOG'S...

 

TUTORIAL OUTLINE

1. Python Features

2. Python Applications

3. Python Basic Syntax

4. Python First Program

 

1. PYTHON FEATURES

1. Simple, easy to learn and use

2. Expressive language

3. Interpreted language

4. Free and open source

5. cross-platform

6. Object-oriented programming

7. Extensible language

8. Large standard liberary

9. Integrated language

10. GUI programming support

11. Embedded language

12. Dynamic memory allocation

 

2. PYTHON APPLICATIONS

General-purpose, object-oriented programming, open-source, simple, powerful and popular programming language and it is used in almost every technical field. Some of which are the following:

1. Data Science

2. Date Mining

3. Mobile applications

4. Desktop applications

5. Software development

6. Console-based applications

7. Artificial Intelligence

8. Machine Learning

9. Web applications

10. 3D CAD applications

11. Enterprise applications

12. Computer vision/Image processing applications

13. Speech recognition

14. Mathematical calculations

15. Scientific calculations, etc.

 

3. PYTHON BASIC SYNTAX

 

def func():

    statement 1

    statement 2

    -----------

    -----------

    statement n

 

4. PYTHON FIRST PROGRAM

Python provides the facility to execute the source code using few lines.

Suppose we want to display “Hello World!” message on the console screen using Java, it will take three lines to display it.

Java code

public class HelloWorld{

    pulic static void main (String[] args){

         System.out.println (“Hello World!\n”);

    }

}

Output:

Hello World!

 

In C programming, it will take six lines to display it.

C code

#include<stdio.h> // c header file

#include<stdlib.h>

int main() // main function

{

    system (“clear”); // clear the console screen

    printf (“Hello World!\n”);

   

    return 0;

}

Output:

Hello World!

 

But in Python, we can do this using one statement.

Python code

print (“Hello World!\n”)

Output:

Hello World!

 

So friends, this was my blog related to Python programming language. I hope you liked my blog / article, and hope that this blog of mine will be helpful for you. Friends, this blog of mine, if able to help you in any way, it will be a matter of great happiness for me.

If you liked this blog of mine, please subscribe to my blogs through your email id in the Enter your email address at the top of the page. So that you can get the information of any blog / article published on my blogger website first through email. And please share the link of this blog with more and more people. If you have some suggestions related to this article, you can reveal them at the end of the article through comments.

If I have made any kind of error while writing this blog, then I would like to apologize to all you readers for that. So friends, that's all for today's blog for now. See you soon, with a new blog. Till then stay happy, stay healthy, stay safe and keep studying.


Previous blog: Python Introduction

Previous blog: How To Install Vim Text Editor


Post a Comment

0 Comments