Utkarsha Nathani has Published 21 Articles

Draw a Tic Tac Toe Board Using Python – Turtle

Utkarsha Nathani

Utkarsha Nathani

Updated on 11-Oct-2023 15:22:58

2K+ Views

The wide range of libraries and tools makes python a popular and widely used programming language. One of the library which we will use in this article to complete the task of drawing a tic tac toe is Turtle. This library helps in creating graphics by using a virtual turtle. ... Read More

Draw a Tree Using Arcade Library in Python

Utkarsha Nathani

Utkarsha Nathani

Updated on 11-Oct-2023 15:21:37

434 Views

Python is a modern programming language. The wide range of features, such as extensive libraries, simple syntax etc. has increased its popularity in different fields such as web development, data science, and many more. In this article, we will be using one of the libraries of python which is Arcade. ... Read More

Draw a Unstructured Triangular Grid as Lines or Markers in Python using Matplotlib

Utkarsha Nathani

Utkarsha Nathani

Updated on 11-Oct-2023 15:18:20

376 Views

Python is a popularly used programming language. It offers a wide range of tools and libraries which can be used for solving different problems, one of them is Matplotlib. This library provides various functions for data visualization and creating different plots. In this article, we will be using Matplotlib for ... Read More

Draw an Arc Using Arcade in Python

Utkarsha Nathani

Utkarsha Nathani

Updated on 11-Oct-2023 15:15:54

381 Views

Python is an extensively used programming language. The presence of wide range of libraries and tools makes it a popular language. One of the libraries of python is Arcade. This library works as a multimedia library and provides graphic tools for the creation of 2D games, objects used in graphic ... Read More

How to Calculate and Plot the Derivative of a Function Using Python – Matplotlib?

Utkarsha Nathani

Utkarsha Nathani

Updated on 11-Oct-2023 15:12:39

5K+ Views

The Derivative of a function is one of the key concepts used in calculus. It is a measure of how much the function changes as we change the output. Whereas Matplotlib is a plotting library for python, since it does not provide a direct method to calculate the derivative ... Read More

How to Change the Line Width of a Graph Plot in Matplotlib?

Utkarsha Nathani

Utkarsha Nathani

Updated on 11-Oct-2023 15:05:22

2K+ Views

Matplotlib one of the libraries of python, which plays an important role in beautifying plots and making the data analysis and data visualization an easier task. You can use Matplotlib for experimenting, by using different options available in it and creating a more appealing, informative plot. One common customization ... Read More

Draw a Sun Using Arcade Library Python

Utkarsha Nathani

Utkarsha Nathani

Updated on 13-Sep-2023 11:21:01

727 Views

Python is a highly multipurpose programming language with a vast network of libraries and frameworks that has capabilities beyond the standard language features. Arcade is one of the libraries used for creating graphics and handling user input. It uses basic shapes like circles and lines, a gradient approach, and many ... Read More

Django Shortcuts – get_list_or_404()

Utkarsha Nathani

Utkarsha Nathani

Updated on 13-Sep-2023 11:09:47

626 Views

Django is a popular web framework written in python, helps the web developers to create web applications efficiently. One of the most important features of Django is the built-in functions known as shortcuts. These shortcuts help in providing useful features for completing the task. In this article, we will be ... Read More

Python Program to get first and last element from a Dictionary

Utkarsha Nathani

Utkarsha Nathani

Updated on 24-Apr-2023 13:24:14

25K+ Views

Python is an interpreted, object–oriented, high level, programming language with dynamic semantics. Developed by Gudio Van Rossum in 1991. It supports multiple programming paradigms, including structured, object-oriented and functional programming. Before diving deep into the topic let’s first brush up the basic concepts related to the question provided to us. ... Read More

Python program to remove null values from a dictionary

Utkarsha Nathani

Utkarsha Nathani

Updated on 24-Apr-2023 12:08:57

3K+ Views

Dictionaries are known as the collection data types. They store data in the form of key value pair. They are ordered and changeable i.e., they follow a particular sequence and are indexed. We can change the values for a key and therefore it is manipulative or changeable. Dictionaries does not ... Read More

Advertisements