Skip to main content

Posts

Showing posts from May, 2018

Python Basic Syntax

Introduction:  Python is most popular and high level programming language designed by Guido van Rossum in the year of 1991. You can use it to build web development, Game Development, Machine Learning Algorithm, etc and also You can even make robots using python.             Basic syntax of a python program is easy and simple than other programming languages.Python programs can be written using any text editor and should have the extension .py.             Before going further into Python syntax,I recommend you to read about the basics of Python . This Python Tutorial will explain about the basic syntax in Python with example programs. FREE PDF – Python course content. First Python Program:           Type the following content at the Python prompt and press the Enter:  print “Welcome”  The output will be  - Welcome Comments in Python:            Comments are denoted by # Python Comments starts with a # Character.Multiple line comments do not exist in Python. Example: