Stephen Gamit
Editor
UC Browser Has Returned To The Google Play Store
You might remember last week that UC Browser was removed from the Google Play Store. The company behind UC Browser, UCWeb, quickly responded to the...
OnePlus 5T Now Available On Amazon India
The highly anticipated OnePlus 5T launched just a few days ago, and it’s on sale today. The latest flagship smartphone from OnePlus is available in many territories...
AMD Releases Ryzen 5 Desktop CPU
As planned, AMD has released the Ryzen 5 series of desktop CPU after releasing the Ryzen 7 series in February.
The Ryzen 5 series currently...
Google Areo App
Google has launched a new service called Areo, which will let you order food as well as arrange for home services. The service is...
Live TV On Youtube TV
YouTube TV was originally announced back in February, and today it has finally gone live. It's a streaming video service that delivers live TV...
ASUS ROG GX800 Liquid Cooled Gaming Laptop Launched In India For Rs.7,97,990
One of the centrepieces at COMPUTEX 2016, the ASUS ROG GX800 is a beastly gaming laptop that stands apart from the crowd. And for...
Micromax Dual 5 With Dual Rear Cameras
Micromax has come back from its hiatus with a new smartphone for the Indian market, the Micromax Dual 5.
The Micromax Dual 5 has a...
Python Property
Python has a great concept called property, which makes the life of an object oriented programmer much simpler. Before defining and going into details...
Python Objects and Class
Python is an object oriented programming language. Unlike procedure oriented programming, in which the main emphasis is on functions, object oriented programming stress on...
Python Operator Overloading
Python operators work for built-in classes. But same operator behaves differently with different types. For example, the + operator will, perform arithmetic addition on...
Python Generators
There was a lot of overhead in building an iterator in Python; we had to implement a class with__iter__() and __next__() method, keep track...
Python Condition
Python if...elif...else and Nested if
 Decision making is required when we want to execute a code only if a certain condition is satisfied. The if…elif…else statement...
Python while Loop
The while loop in Python is used to iterate over a block of code as long as the test expression (condition) is true. We...
Python Loop
The for loop in Python is used to iterate over a sequence (list, tuple, string) or other iterable objects. Iterating over a sequence is...