Is it possible to color a string in a list ?
is there a way to color a string inside a list say
L = ["1","2","3"]
and I want to display 2 in red
is there a way to color a string inside a list say
L = ["1","2","3"]
and I want to display 2 in red
If you're using an interface that supports LaTeX output, such as a Jupyter notebook:
sage: show(["1", LatexExpr(r"{\color{red} 2}"), "3"])
[1,2,3]
To automate it, you could do e.g.
sage: show([LatexExpr(r"{\color{red} " + latex(x) + "}") if x == "2" else x for x in L])
or
sage: show([LatexExpr(r"{\color{red} " + latex(x) + "}") if k == 1 else x for k, x in enumerate(L)])
I have tried to adapt your solution to a list of list but I certainly make an error
M=[[1, 0],[0,1]]
show([[LatexExpr(r"{\color{red} " + x + "}") if k == 1 else x for k, x in enumerate(M[i])]for i in range(len(M))])
I've updated the answer: use latex(x)
in the string concatenation.
Asked: 1 year ago
Seen: 226 times
Last updated: Mar 15 '24