Skip to main content

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:
 Print(#This is a comment line)   #comment line


Quotation in Python:
          Python supports the single quote and the double quote.
 Print(‘Pythonquation’) (Or) Print(“Pythondoublequation”)


Joining two lines:
          When you want to write a large set of code in a single line you can break the line using backslashcharacter(\).

String Operators:
          Concatenation is done with the + operator.
Example:
x = 2 + float(11.5) #$x=13.5, float
Comparing Strings: 
         Strings can be compared with the Operators.
 ==, !=, <, >, <=, and >=.
String Functions:
string upper():
          Upper case letters will be returned for using String upper.
intlen(string): 
          returns the length of the string x = leng(string name) #x returns the string length

Arrays:
          In Python Arrays are the listed with mixed data types.
Using append for Adding new list in Array:
Example:
x=[] – Denotes Empty
Array x.append("python")
x.append(3)
print x
The Output will be -  ['python', 3]
Removing element from Array:
          Pop method can be used to remove any element from the list.
Example:
  x=[“one”,”two”,”three”,”four”]
 x.pop(2)
 print x
 The Output will be -  [“one”,”two”,”four”]

Reserved Words: 
         Python keywords contain lowercase letter only.We cant use this reserved words for identifiers or variable names. Few of them given below,
Example:
With,finally,from,for,print,raise,continue,def,del,else,except


Conclusion:
          The above mentioned are the basics syntax of Python programming language. As I said before it is simple scripting language which is easy to learn. Python certification training program will help you to learn Python professionally with hands-on real time projects.

 Take a Look:  Top Reasons to Learn Python


Comments

Post a Comment

Popular posts from this blog

Python Interpreter - Difference between Compiler & Interpreter - Python Tutorials

In our series of Python tutorials previously we discussed about the Basics of Python and Installation of Python in video tutorials as well. Here in this part lets discuss about Python Interpreters. Interpreter and Compiler:             As a software developer, we use different types of programming languages such as C, C++, Java, Python depends upon our requirement. We all know that the programming languages which a human can understand are called as high-level programming language. But: The computer understands only machine learning, Hence it is needed to convert or translate the code into the machine language. Interpreter and Compilers are used to convert the source code into the machine code. What is an Interpreter? The interpreter is nothing but a program which reads and executes the code. It includes different types of codes such as Source code, Compiler code . Most common interpreters available are Python , Ruby and PERL in which they execute their respective co

Understanding Python Interpreter

How Python Runs Programs? Normally, programmers write their own python scripts with the .py extension, that are independent in the python environment. the".py" extension, which tells the operating system that the file is Python program this need to be executed in python.  After that OS decides and the interpreter is invoked, it reads the file and interprets the file. The way in which Python scripts are run on Windows and other operating systems is very different. How You Run Programs?  If you are already known to run some other languages like C, C++, Java, It is simple to run the program using an interpreter, you can able to run either command prompt or using the IDLE. Before that check here to know How to Install Python? Following are the steps to run the python file on your own,  Step 1: Open the IDLE of python and then type your code just press enter the result will be printed on your screen. Step 2: Run Python Script open the new file in the fil