1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
%% Cell type:code id:5 tags:
``` python
from IPython.display import SVG, display
svg = """<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
<circle cx="50" cy="50" r="50"/>
</svg>"""
display(SVG(svg))
```
%% Output


|