sailendra.hashnode.devPython implementation of Prefix and Suffix sum of an arrayIntroduction In this post, I will share the implementation of the prefix and suffix sum of an array. I searched a lot to find the implementation of prefix and suffix in python before writing this article but I didn't get exactly what I wanted. Someh...Jun 8, 2021·3 min read
sailendra.hashnode.devCreate a Number Guessing Game in PythonIntroduction Today we are going to create a game in python which is number guessing game. In this game the person/user guesses a number. If the number matches with system generated random number then the person wins the game, the user gets 10 chances...Jun 5, 2021·3 min read
sailendra.hashnode.devDice Rolling Simulator using Python-random and TkinterHow to create a dice simulator using python and Tkinter Today we are going to create a dice simulator where the user clicks on a button and dice show different values. It is easy to create dice using Unicode. And you will learn the concept of the ran...Jun 2, 2021·2 min read
sailendra.hashnode.devPython Program to Solve Quadratic Equation - mini projectHow to solve quadratic equation using python This project will be interesting because in this project we are going to create an application that solves our quadratic equation. It helps us to understand the concepts of maths and its modules. First,...Jun 1, 2021·3 min read
sailendra.hashnode.devMake Your First Python Game: Rock, Paper, Scissors!How to make python Game: Rock, Paper, Scissors using Tkinter library Today we are going to create an interesting game application which is Rock paper scissor with, as always python and Tkinter library. It is simple, first, we create frames to separat...May 31, 2021·3 min read