Here is a simple Python program that can be used to display the multiplication table for a given number:

				
					# Ask the user to enter the number for which they want to see the multiplication table
number = int(input("Enter a number: "))

# Use a for loop to iterate over the numbers 1 through 10
for i in range(1, 11):
    # Calculate the result of the multiplication and store it in a variable
    result = number * i
    
    # Print the multiplication table row
    print(f"{number} x {i} = {result}")

				
			

This program first prompts the user to enter a number, which is stored in the number variable. Then, it uses a for loop to iterate over the numbers 1 through 10. For each iteration, it calculates the result of the multiplication and prints it to the console.


Thanks for reading. Happy coding!