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

zero lead in hopper but there lead in campaign

goautodial - admin page

If you have the error like this “This campaign  has zero leads in the dial hopper No Lead in the Hopper to dial” you need to check the following things:- Campaign Setting Check the Campaign is set to Active Set Y to No hooper leads Login Change the Dial time in Campaign to “LOCAL CALL TIME … Read more

Python Variables and Data type

python tutorial

Variables are nothing but reserved memory locations to store values. This means that when you create a variable you reserve some space in memory. Based on the data type of a variable, the interpreter allocates memory and decides what can be stored in the reserved memory. Therefore, by assigning different data types to variables, you … Read more

How to reduce customer escalations

customer-escalations

Providing excellent customer service is an art, which has many facets including mastering the tricks to reduce escalations. In every call center, telecaller or agent has this one nightmare – ”I want to speak with your manager.” Sounds familiar? Well, customer escalations take away the essence of great customer experience for everyone. Customers can be … Read more

Python Basic Syntax

python tutorial

Python is a very simple language, and has a very straightforward syntax. It encourages programmers to program without boilerplate (prepared) code. The simplest directive in Python is the “print” directive – it simply prints out a line (and also includes a newline, unlike in C). There are two major Python versions, Python 2 and Python … Read more