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 , Ru...

Basics of Python Language

What’s python? Python is an interpreted Composite programming language.  Python is an object-oriented, high-level programming language with dynamic semantics.  Which holds high-level built-in data structures, it is a combination of dynamic typing and dynamic binding, make it extremely attractive for Rapid Development of Application,  It is used for the scripting language to connect existing components together.  It is simple and easy to learn syntax emphasizes readability and for that reason reduces the cost of program maintenance. Check here the Latest Updated Python Course Content  Why do people use python? Python is a Simple and easy language for beginners because python can have a wonderful community to help all the needs. The language is also rapidly growing domain and broadly taught in universities and used for functioning with learner-friendly devices such as the Raspberry Pi Some quotable quotes “You really enjoy coding with Pytho...