Python Bitwise Operators Example
Example: #!/usr/bin/python a = 60 # 60 = 0011 1100 b = 13 # 13 = 0000 1101 c = 0 c = a & b; # 12 = 0000 1100 print “Line 1 – Value of c is “, c c = a | b; # 61 = 0011 1101 print “Line 2 – … Read more
Example: #!/usr/bin/python a = 60 # 60 = 0011 1100 b = 13 # 13 = 0000 1101 c = 0 c = a & b; # 12 = 0000 1100 print “Line 1 – Value of c is “, c c = a | b; # 61 = 0011 1101 print “Line 2 – … Read more
Example: !/usr/bin/python a = 21 b = 10 c = 0 c = a + b print “Line 1 – Value of c is “, c c += a print “Line 2 – Value of c is “, c c *= a print “Line 3 – Value of c is “, c c /= a … Read more
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
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
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
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
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
The following identifiers are used as reserved words, or keywords of the language, and cannot be used as ordinary identifiers. They must be spelled exactly as written here: All the Python keywords contain lowercase letters only.
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 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