×

Python Tutorial

Python Basics

Python I/O

Python Operators

Python Conditions & Controls

Python Functions

Python Strings

Python Modules

Python Lists

Python OOPs

Python Arrays

Python Dictionary

Python Sets

Python Tuples

Python Exception Handling

Python NumPy

Python Pandas

Python File Handling

Python WebSocket

Python GUI Programming

Python Image Processing

Python Miscellaneous

Python Practice

Python Programs

Bigotimes Symbol in Python Plotting

Here, we are going to learn how to add bigotimes symbol in Python plotting?
Submitted by Anuj Singh, on September 01, 2020

Bigotimes is a different symbol used in set theory and python have provided us to use it while plotting. Following example shows its implementation.

plt.text(0.45, 0.45, r'$\bigotimes$')

Illustrations:

Bigotimes Symbol in Python Plotting

Python code for bigotimes symbol in plotting

import numpy as np
import matplotlib.pyplot as plt

#Bigotimes
#In text
plt.figure()
plt.plot([0,1],[0,1], 'o', color=  'purple')
plt.title('Adding Text: Bigoptimes')
plt.text(0.45, 0.45, r'$\bigotimes$', fontsize=25, )
plt.show()

Output:

Output is as Figure
Advertisement
Advertisement


Comments and Discussions!

Load comments ↻


Advertisement
Advertisement
Advertisement

Copyright © 2025 www.includehelp.com. All rights reserved.