Neeraj Mishra

A crazy computer and programming lover. He spend most of his time in programming, blogging and helping other programming geeks.

Advantages and Disadvantages of Artificial Intelligence

In this article you’ll see the advantages and disadvantages of artificial intelligence. Artificial intelligence is designing programs or machines that have ability to think, so machines can take decisions without interference of human. Giving thinking capacity to machines can arise several problems and advantages too. So let’s see them. Image Source Advantages of Artificial Intelligence …

Advantages and Disadvantages of Artificial Intelligence Read More »

Python Operator Overloading

In this article, you’ll learn about python operator overloading with examples. We all know what are operators (+, -, <=). In python, operators work for built in classes, but some operator behaves differently with different types. For example ‘+’ operator can add two numbers and also can concatenate two strings. Program: a = 10 b = …

Python Operator Overloading Read More »

Python = vs ==

Hello everyone, in this tutorial you’ll see what’s the difference between = and == in python. Most of new programmers get confused with them. Python = vs == = (assignment operator) Well, in simple words, ‘=’ is an assignment operator which is used to assign a value (on right side) to a variable (on left side). Example: …

Python = vs == Read More »