your image

Python Language Introduction - GeeksforGeeks

GeeksforGeeks
geeks for geeks
Related Topic
:- Python programming skills

Python Language Introduction

  • Difficulty Level : Basic
  • Last Updated : 23 Jan, 2020

Python is a widely used general-purpose, high level programming language. It was created by Guido van Rossum in 1991 and further developed by the Python Software Foundation. It was designed with an emphasis on code readability, and its syntax allows programmers to express their concepts in fewer lines of code.

Python is a programming language that lets you work quickly and integrate systems more efficiently.

There are two major Python versions: Python 2 and Python 3. Both are quite different.

Beginning with Python programming:

1) Finding an Interpreter:


 

Before we start Python programming, we need to have an interpreter to interpret and run our programs. There are certain online interpreters like https://ide.geeksforgeeks.org/, http://ideone.com/ or http://codepad.org/ that can be used to run Python programs without installing an interpreter.

WindowsThere are many interpreters available freely to run Python scripts like IDLE (Integrated Development Environment) that comes bundled with the Python software downloaded from http://python.org/.

LinuxPython comes preinstalled with popular Linux distros such as Ubuntu and Fedora. To check which version of Python you’re running, type “python” in the terminal emulator. The interpreter should start and print the version number.

macOSGenerally, Python 2.7 comes bundled with macOS. You’ll have to manually install Python 3 from http://python.org/.

2) Writing our first program:

Just type in the following code after you start the interpreter.

 

 

 

    

  

# Script Begins

  

    

  

print("GeeksQuiz")

  

    

  

# Scripts Ends

  

   

Output:

GeeksQuiz

Let’s analyze the script line by line.


 

Line 1: [# Script Begins] In Python, comments begin with a #. This statement is ignored by the interpreter and serves as documentation for our code.

Line 2: [print(“GeeksQuiz”)] To print something on the console, print() function is used. This function also adds a newline after our message is printed(unlike in C). Note that in Python 2, “print” is not a function but a keyword and therefore can be used without parentheses. However, in Python 3, it is a function and must be invoked with parentheses.

Line 3: [# Script Ends] This is just another comment like in Line 1.

Comments