Intro to Python. - Coding Chaser

Latest

Let the Journey To Programming begin...

Saturday, December 28, 2019

Intro to Python.


Python

What is Python?

Python is a popular programming language. It was created by Guido van Rossum, and released in 1991.
It is used for:
  • web development (server-side),
  • software development,
  • mathematics,
  • system scripting.

 

Execute Python Syntax


Python syntax can be executed by writing directly in the Command Line:
>>>print(“Hello,World!”)
Hello,World!

Or by creating a python file on the server, using the .py file extension, and running it in the Command Line:
C:\user\Your Name>Python myfile.py

No comments:

Post a Comment

Text