View all courses
This Course is designed for the aspiring Web Designers and Developers with a need to understand the HTML in enough detail along with its simple overview, and practical examples.
Read more
CSS is used to control the style of a web document in a simple and easy way.This tutorial will help both students as well as professionals who want to make their websites.
JavaScript is a lightweight, interpreted programming language. It is designed for creating network-centric applications. It is complimentary to and integrated with Java.
This tutorial is designed for software programmers who wants to learn the basics of jQuery and its programming concepts in simple and easy ways. This tutorial will give you enough understanding on components of jQuery with suitable examples.
AJAX, is a web development technique for creating interactive web applications. If you know JavaScript, HTML, CSS, and XML, then you need to spend just one hour to start with AJAX.
HTML5 is the latest and most enhanced version of HTML.Technically, HTML is not a programming language, but rather a mark up language.This tutorial has been designed for beginners in HTML5 providing the basic to advanced concepts of the subject.
PHP (Hypertext Preprocessor), it is extensively used by developers for programming and development. PHP has lots of benefits and easy to learn so it is the first choice of developers and programmer.
Many PHP programming courses cover the basics or a specific concept. Our Advanced PHP Development course gives you the concepts, features, tools, and practical advice to use them together to build performant, secure, scalable, and reliable web applications.
In this tutorial we will provide you with detailed instructions on how to use WordPress to create and manage your site. WordPress can be used for both simple and complex websites. In our WordPress tutorial we have tried to cover all the basics and few advanced topics.
This tutorial has been prepared for developers who would like to learn the art of developing websites using CodeIgniter. It provides a complete understanding of this framework.
Zend Framework 1 is an open source framework for developing web applications and services using PHP 5.3+. Zend Framework 1 uses 100% object-oriented code and utilises most of the new features of PHP 5.3.
Zend Framework 2 is an open source Module based framework for developing web applications and services using PHP 5.5+. Zend Framework 1 uses 100% object-oriented code and utilises most of the new features of PHP 5.5
The Language Which does not need any prior knowledge of Programming and Easy to learn .Python is Object-oriented ,interpreted and Server side Scripting language .
In Advance concept After learning Core Python We will use Python to create Desktop Application, Web Application, Sockets Programming , Multithread Programming. Since its An Open source Language its free of Cost
Ruby is server side, dynamic, reflective, object-oriented, general-purpose programming language. Ruby is "an interpreted scripting language for quick and easy object-oriented programming"
Ruby on Rails, or simply Rails, is a web application frameworkwritten in Ruby under the MIT License. Rails is a model–view–controller (MVC) framework, providing default structures for a database, a web service, and web pages.
If you have any confusion then you can ask our experts.Our experts will guide you properly.
We are looking you if you are looking guidance for web design and development. Apply online.
Contact us
Python Operators
#Arithmetic operators
#Assignment operators
#Comparison operators
#Logical operators
#Identity operators
#Membership operators
#Bitwise operators
Arithmetic operators
x= 103; y= 20;
z= x+y;
print(z)
z= x-y;
z= x*y;
z= x/y;
z= x%y;
z= x**y;
Assignment Operators
a = 101;
print(a)
a= a+5;
a+=5
a= a-5;
a*=5
Comparison Operators
a = 20;
b= 20;
if(a==b):
print("a is equal to b");
else:
print("a is not equal to b");
if(a!=b):
#logical operator
#Logical operators are used to combine conditional statements:
# and
# Returns True if both statements are true
x=10;
y=30;
#print(x>5 and y>200)
#Or
#Returns True if one of the statements is true
#print(x>5 or y>200)
#not
#Reverse the result, returns False if the result is true
print (not(x>5 and y>20))
Identity Operator
#Identity operators are used to compare the objects,
# not if they are equal, but if they are actually the same object,
# with the same memory location:
#is
x=['english','hindi']
y=['english','hindi']
z = x;
print(x is z)
print(x==y)
print(x)
f="10";
g="10";
q=f;
print(f is g)
print(f==g)
#is not
#Returns True if both variables are not the same object
print(x is not z)
print (x != z)
Membership Operators
in
#Returns True if a sequence with the specified value is present in the object
x=['english','hindi'];
print('hindi' in x)
# not in
#Returns True if a sequence with the specified value is not present in the object
print('hindi' not in x)
print('hindi1' not in x)
#Bit wise operator
#bitwise operator
#AND
print(6&3)
#110 6
#010
#011 3
#110
#011
#-----
# 010 2
# 1000
# 1001
# 1010
# 1100
#OR
print(6|3)
# 111 7
#XOR
# 101 5
#NOT
~3
# 011
# 100
#Zero fill left shift
#3<<2
#01100 12
# right shift
#0100 4
#0001 1
< Variable in python Last >
{{questionlistdata.blog_question_description}}
{{answer.blog_answer_description }}