XOR in Python

XOR Operator in Python is also known as “exclusive or”  that compares two binary numbers bitwise if two bits are identical XOR outputs as 0 and when two bits are different then…
View Post
Typeerror Unhashable Type 'Dict'

TypeError: unhashable type: ‘dict’

In Python, all the dictionary keys must be hashable, so if you use any unhashable key type while adding a key into the dictionary, you will encounter TypeError: unhashable type: ‘dict’…
View Post
Number.isinteger() - Javascript

Number.isInteger() – JavaScript

In JavaScript, Number.isInteger() method checks whether the passed value is an integer or not. The method isInteger() returns true if the provided value is an integer or type number. Otherwise, it returns false. Syntax…
View Post
Indentationerror Unexpected Indent

IndentationError: unexpected indent

Python language emphasizes indentation rather than using curly braces like other programming languages. So indentation matters in Python, as it gives the structure of your code blocks, and if you…
View Post