Priya Mishra has Published 162 Articles

How to add Music Playlist in Pygame?

Priya Mishra

Priya Mishra

Updated on 31-May-2023 16:27:24

1K+ Views

Pygame can handle audio, making it a great choice for creating and adding music playlists to our applications. Pygame is generally a Python library that is widely used for creating games and multimedia applications like a music player. In this article, we will be discussing steps to add a music ... Read More

How to add moving platforms in PyGame?

Priya Mishra

Priya Mishra

Updated on 31-May-2023 16:08:33

237 Views

In various games that contain platforms, moving platforms are mainly essential elements of the gameplay to make the game more interactive and challenging. PyGame is a popular Python library that is widely used to create 2-dimensional games. In this article, we will discuss how to add moving platforms to a ... Read More

How to add metadata to a DataFrame or Series with Pandas in Python?

Priya Mishra

Priya Mishra

Updated on 31-May-2023 16:06:46

1K+ Views

One of the key features of Pandas is the ability to work with metadata, which can provide additional information about the data that is present in a DataFrame or Series. Pandas is a powerful and widely used library in Python which is used for data manipulation and analysis. In this ... Read More

How to add Matplotlib graph in Kivy?

Priya Mishra

Priya Mishra

Updated on 31-May-2023 15:58:45

2K+ Views

Integrating or adding matplotlib graphs into kivy applications can help developers to create more informative and engaging user interfaces. Kivy is an open-source Python framework that is used to develop mobile and dektop applications whereas Matplotlib is a data visualization library used for creating charts, graphs, and other visualizations. In ... Read More

How to Add Markers to a Graph Plot in Matplotlib with Python?

Priya Mishra

Priya Mishra

Updated on 31-May-2023 15:49:06

871 Views

While creating plots using Matplotlib which is a library of Python one common task is to add markers to indicate data points. Matplotlib provides a variety of marker styles which includes circles, triangles, squares, dots, and diamonds. These markers can be customized further with different sizes, colors, and edge sizes. ... Read More

How to Add Leading Zeros to a Number in Python?

Priya Mishra

Priya Mishra

Updated on 31-May-2023 15:42:35

14K+ Views

While working with numbers in Python, it is often necessary to add leading zeros to a number. Adding leading zeros to a number is important when you are dealing with formatted data or when you need to ensure that a certain number of digits are present in a number, or ... Read More

How to add drag behavior in kivy widget?

Priya Mishra

Priya Mishra

Updated on 31-May-2023 15:39:50

367 Views

Adding drag behavior in a Kivy widget can be a useful feature for a range of applications, including educational applications, productivity tools, and games. Dragging objects on the screen is one of the essential features of the natural user interface. We will be using a class in Kivy known as ... Read More

How to add custom fonts in Kivy - Python?

Priya Mishra

Priya Mishra

Updated on 31-May-2023 15:37:34

587 Views

Kivy has the ability to use and add custom fonts to the widgets that are being used in the applications, which can help developers to add a personalized and unique touch to their applications. Adding a custom font in kivy involves two major steps which are loading the custom font ... Read More

Histogram in pygal

Priya Mishra

Priya Mishra

Updated on 31-May-2023 15:33:05

128 Views

 Pygal is a Python library that is used for creating interactive charts and graphs, one of the charts that Pygal supports is the histogram. Histogram is basically a graphical representation of the distribution of numerical data which helps us to quickly identify patterns, outliers, and trends in a dataset provided. ... Read More

Appending a dictionary to a list in Python

Priya Mishra

Priya Mishra

Updated on 31-May-2023 15:27:56

2K+ Views

Dictionaries allows us to store key-value pairs, while lists allow you to store multiple values in a single variable and one common task is to append a dictionary to a list, which can be useful for storing multiple dictionaries in a single list. In this article, we will explore how ... Read More

Advertisements