100% found this document useful (1 vote)
260 views

1 Introduction

Python is a widely used high-level programming language that is simple, easy to learn, and suitable for beginners. It is used by many major companies like Google, Philips, NASA, and YouTube. A simple "Hello World" program demonstrates that Python code is much more concise and readable than equivalents in C and Java.

Uploaded by

Abhishek Sahu
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
100% found this document useful (1 vote)
260 views

1 Introduction

Python is a widely used high-level programming language that is simple, easy to learn, and suitable for beginners. It is used by many major companies like Google, Philips, NASA, and YouTube. A simple "Hello World" program demonstrates that Python code is much more concise and readable than equivalents in C and Java.

Uploaded by

Abhishek Sahu
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

Introduction

Python is a widely used high-level dynamic programming language. It is a very simple,


friendly and easy to learn programming language. It is the best choice for a beginner
programmer. Python source code is also available under GNU General Public License
(GPL).

Who use Python?

As mentioned above, it is a widely used programming language. Some of the places where
Python is used are :

 Google - Python is one of the key language used in google.


 Philips - Philips uses Python for the sequencing language (language that tells
what steps each robot should take).
 Frequentis - Frequentis is the originator of TAPTools, a software product that
is used for air traffic control in many airports. This particular tool provides
updates on the weather and runway conditions to air traffic controllers. So,
you depend on Python when you fly.
 Quora - Quora also chose Python for its development.
 Battlefield 2 - Battlefield 2 uses Python to implement core elements of its
gameplay such as score-keeping and team-balancing.
 Instagram - Instagram also uses Python for its backend.
 Walt Disney Feature Animation - Walt Disney Feature Animation is also using
Python to make their animation production system more efficient in scripting.
 NASA - Johnson Space center uses Python in its Integrated Planning System as
the standard scripting language.
 Civilization 4 - The new addition to the legendary strategy game series has
all of its inner logic, including AI, implemented in Python.
 YouTube - We all love youtube and and youtube loves using Python
 DropBox - Dropbox allows us to store, sync, and share almost anything using
the power of Python.
 Pinterest - Pinterest is a visual discovery tool that allows users to showcase
their interests through the posting of pictures.

This list is never-ending, with new additions to it every day, but I hope it is enough
to motivate you to learn Python.
How is Python simple?

I will write a code to print "Hello World" on the screen in C, Java and Python. Decide
yourself which is simpler.
C
#include <stdio.h>
main(){
printf("Hello World");}

Java
class hello{
public static void main(String []args)
{
System.out.println("Hello World");
}
}

Python
print("Hello World")

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy