Below is a program to print a multiplication table of the entered number.

n=int(input("Enter the table number:"))
print("-"*40)
print("\t\t Table of "+str(n))
print("-"*40)
for i in range(10):
   index=i+1
   result=n*index
   print("\t\t"+str(n)+" * "+str(index)+" = "+str(result))
print("-"*40)
Python program to print multiplication table

Output:

Python program to print multiplication table

Explore More

Explain about Hugging Face Transformers

Hugging Face Transformers is a powerful library designed for natural language processing (NLP), computer vision, and audio tasks. It provides state-of-the-art pretrained models and tools for fine-tuning and deploying these

What are Large Language Models

LLM stands for Large Language Model in the context of artificial intelligence. It refers to a type of AI model designed to understand, generate, and manipulate human language on a

Create new Python Virtual environment

Create a new virtual environment  Python 3 allows you to manage separate package installations for different projects. It creates a “virtual” isolated Python installation. When you switch projects, you can