Left Sidebar
Showing posts with the label __get__itemShow all
What is an iterable in Python,what is an iterator and some problems on them?
Champak Roy
Sunday, December 05, 2021
Iteration in Computer Programming is a control statement that allows the repetition of code. For loops, while loops and do while loops are examples of iteration. An iterator in Python is an object t…
Python Fundamentals
Champak Roy
Sunday, November 21, 2021
Question: What are the fundamentals of the Python Programming Language? Answer: It is an object oriented programming language that doesn't have compulsory variable declaration. We will discuss th…
How to get the RGB values from an Image using Python?
Champak Roy
Saturday, January 16, 2021
This post is a continuation from an earlier post at Reading an Image and displaying where we learned how to read an image from disk and display it. In this post we will read the dimensions of a t…