-
Hi, It's not
I would like to have 1) and not 2). Thank you |
Beta Was this translation helpful? Give feedback.
Answered by
cscheid
Oct 14, 2022
Replies: 1 comment 2 replies
-
You need to tell IPython that the output is supposed to be interpreted as Markdown, instead of a string. Try: from IPython.display import display, Markdown
display(Markdown(df.to_markdown())) |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
aborruso
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You need to tell IPython that the output is supposed to be interpreted as Markdown, instead of a string.
Try: