display table of 2,in the form of 2*1=2

To display the table of 2 in the format you mentioned (2 * 1 = 2), you can use a simple loop in a programming language like Python. Here's the code snippet to achieve this:

```python
for i in range(1, 11): # Loop from 1 to 10
print(f"2 * {i} = {2 * i}")
```

Explanation:
- The `for` loop iterates over the range of numbers from 1 to 10 using the `range()` function. Note that the upper limit is exclusive, so `range(1, 11)` will generate numbers from 1 to 10.
- Inside the loop, we use the `print()` function to display the multiplication table. The `f` before the string allows us to use curly braces `{}` to insert variables directly into the string.
- In each iteration, we calculate the product by multiplying 2 with the loop counter `i` and display it using the `print()` function.

When you run the code, it will output the multiplication table of 2 in the desired format:

```
2 * 1 = 2
2 * 2 = 4
2 * 3 = 6
2 * 4 = 8
2 * 5 = 10
2 * 6 = 12
2 * 7 = 14
2 * 8 = 16
2 * 9 = 18
2 * 10 = 20
```

You can modify the code according to your needs, such as changing the range or the multiplication factor.