python : If else example

python tutorial

Decision making is anticipation of conditions occurring while execution of the program and specifying actions taken according to the conditions. Decision structures evaluate multiple expressions which produce TRUE or FALSE as outcome. You need to determine which action to take and which statements to execute if outcome is TRUE or FALSE otherwise. Lets have an … Read more

Comprehensive List of Do’s and Don’ts for Call Center Agents

Do’s and Don’ts for Call Center Agents

A call center agent’s job is one of the most challenging, yet rewarding and most imperative. From taking orders to providing customer support, sticky situations arise. But how you handle it all can make a difference between creating loyal customers and losing business. Whether the call center is small or large, it has two agents … Read more

Python Identity Operators Example

identity operator python

There are used to compare the memory locations of two operators. Example: #!/usr/bin/python a = 20 b = 20 if ( a is b ): print “Line 1 – a and b have same identity” else: print “Line 1 – a and b do not have same identity” if ( id(a) == id(b) ): print … Read more

Python Comparison Operators Example

Comparison operators

These operators compare the values on either sides of them and decide the relation among them. They are also called Relational operators. Example: #!/usr/bin/python a = 21 b = 10 c = 0 if ( a == b ):    print “Line 1 – a is equal to b” else:    print “Line 1 – … Read more

How to drive best customer services from your call center

customer services

Every time a customer calls you up, it is due to some issues or concerns. Moreover, if you mistreat or them try to pitch them unnecessary products and services, it will drive them insane!Customer forms the centerstone for any business which makes it important to absolutely avoid call center bloopers. Especially, when you are working … Read more

Python Operator

python tutorial

Operators are the constructs which can manipulate the value of operands. Consider the expression 4 + 5 = 9. Here, 4 and 5 are called operands and + is called operator. Types of Operator Python language supports the following types of operators. Python Arithmetic Operators Assume variable a holds 10 and variable b holds 20, … Read more