For how to make a target with pthton, I’d suggest using `matplotlib` if you want something more advanced. It’s great for creating visuals and has a ton of customization options.
Here’s a quick example:
```python
import matplotlib.pyplot as plt
fig, ax = plt.subplots()
for i in range(5):
circle = plt.Circle((0.5, 0.5), 0.1 * i, color='red', fill=False)
ax.add_patch(circle)
plt.axis('scaled')
plt.show()
```
This creates a target with multiple rings. Check out [Matplotlib’s gallery](https://matplotlib.org/stable/gallery/index.html) for inspiration!
Here’s a quick example:
```python
import matplotlib.pyplot as plt
fig, ax = plt.subplots()
for i in range(5):
circle = plt.Circle((0.5, 0.5), 0.1 * i, color='red', fill=False)
ax.add_patch(circle)
plt.axis('scaled')
plt.show()
```
This creates a target with multiple rings. Check out [Matplotlib’s gallery](https://matplotlib.org/stable/gallery/index.html) for inspiration!
