Left Sidebar
Try this if you prefer video walkthroughs 🐍 Interactive Pattern Programs in Python 💡 Introduction Pattern programs are one of …
Numpy-Arrays-In-Detail
NumPy — Numerical Python Numpy Arrays In Detail: A Beginner's Guide By Champak Roy — Learning Sutras · Varanasi Contact on WhatsApp Contact / Training Introdu…
Heap Sort
Heap Sort in Python def heapSort (heap): n = len (heap) a = [ 0 ] * (n - 1 ) for i in range ( 1 , n): a[n - 1 - i] = heap[ 1 ] length = n - i + 1 heap[ 1 ] = heap[…
Project --- Doctors Booking App
Develop a Booking App for doctors having the following features. Contact us for software training, education or development
Basics of Lists in Python
Basics of Lists in Python Python docs on lists. List Documentation """ Lists are created in 2 ways. 1. l=[] Empty list, l=[1,2,3] list with elements """ l = [] print(l) …
Programming puzzles on Chess
Given 2 x,y positions check if a bishop can move from x1, y1 to x2, y2 Given a x,y position find all the places that the bishop can move to. Also try for 2 moves. Given a x,y position find all the pl…
What is an iterable in Python,what is an iterator and some problems on them?
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…
How to read mail from Gmail using Python Code?
Python code to connect to Gmail via IMAP and read mails in the inbox Settings Needed Connect to Gmail and open settings. Open IMAP and POP settings Enable IMAP access We can run our Python Code …
How to check if a given number is a Happy Number?
What is a Happy Number? (This is a question that is asked often in Coding Interviews and also in programming assignments in schools and college courses) A Happy Number is a number where the sum of di…
Python Fundamentals
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…