Pranay Arora has Published 47 Articles

How to Create Custom Turtle shapes in Python?

Pranay Arora

Pranay Arora

Updated on 18-Aug-2023 17:44:49

1K+ Views

Python’s Turtle library is used for generating 2D graphics and animations. It has a very simple interface with help of which we can create shapes and patterns on the screen. It comes with some built-in shapes like squares, circles, triangles etc. However, we can even create our own shapes with ... Read More

How to Create Checkbox in Kivymd-Python?

Pranay Arora

Pranay Arora

Updated on 18-Aug-2023 17:42:59

230 Views

Checkboxes are a type of graphical user interface (GUI) element. It enables users to select 1 or more options from a given set of choices. They are often represented in the form of small square boxes which can be either checked(selected) or unchecked(deselected). Checkboxes are normally in square shape ... Read More

How to Create Bottom Navigation using Kivymd and Python?

Pranay Arora

Pranay Arora

Updated on 18-Aug-2023 17:42:03

229 Views

KivyMD is a commonly known library of Python which offers us with a collection of Material Design (MD) compliant widgets. These widgets can be used along with the kivy framework which is another library and is used for creating multi-touch applications. The large number of UI elements that kivyMD provides ... Read More

Converting each list element to key-value pair in Python

Pranay Arora

Pranay Arora

Updated on 18-Aug-2023 17:40:55

158 Views

Lists are a commonly used data structure in python where data is stored in the form of elements. Key-value pairs are what we refer to as dictionaries where the data had unique keys and corresponding values. In this article, we are going to convert each list element into a key-value ... Read More

Convert list to Single Dictionary Key Value list in Python

Pranay Arora

Pranay Arora

Updated on 18-Aug-2023 17:40:02

103 Views

Python is one of the most popular, high-level languages widely in use. Lists are one of the four built in data types in Python, used to store collections or groups of Data. Dictionary, Tuples and Sets are the other three data types. When working with Python, there are often ... Read More

Java Program to Display Name of the Weekdays in Calendar Year

Pranay Arora

Pranay Arora

Updated on 06-Apr-2023 14:17:24

392 Views

A week in a calendar year consists of 5 weekdays: Monday, Tuesday, Wednesday, Thursday and Friday; the two remaining days (Saturday and Sunday) make up the weekend. If you're working with dates and calendars as an application developer, manually looking up names for weekdays in a year can be tedious. ... Read More

Java Program to Display Name of Months of Calendar Year in Short Format

Pranay Arora

Pranay Arora

Updated on 06-Apr-2023 14:17:02

420 Views

A year has 12 months which are named January, February, March, April, May, June, July, August, September, October, November, December. These are the complete names of the months and there are multiple ways to represent them like short format, complete format, MM or 2 integers format. In this article, we are ... Read More

Java Program to Extract a Single Quote Enclosed String from a Larger String using Regex

Pranay Arora

Pranay Arora

Updated on 06-Apr-2023 10:28:00

744 Views

Regex or Regular Expression is language used for pattern-matching and string manipulation. It consists of a sequence of characters which define a search pattern and can be used for performing actions like search, replace and even validate on text input. A regular expression consists of series of characters and symbols ... Read More

Java Program to Demonstrate How User Authentication is Done

Pranay Arora

Pranay Arora

Updated on 06-Apr-2023 10:18:43

1K+ Views

Authentication refers to the process of verifying the identity of an individual to make sure the user is exactly who they are claiming to be before giving access to a system. It is very important to authenticate a user to ensure the security as well as integrity of the system. ... Read More

Implementation of LinkedList in Javascript

Pranay Arora

Pranay Arora

Updated on 10-Mar-2023 11:41:26

4K+ Views

A linked list is a data structure that consists of a sequence of elements, each of which contains a reference (or "link") to the next element in the sequence. The first element is called the head and the last element is called the tail. Linked lists have many advantages over ... Read More

Advertisements