连接Python中的列时处理美元符号$

时间:2018-11-06 00:29:55

标签: python python-3.x jupyter-notebook

我想将3列与美元符号结合起来

 list:  "Reee" -> "Moo" -> "Cowabunga"
 itr             ^

 list:  "Reee" -> "Moo" -> "Cowabunga"
 itr   ^

sample data

import pandas as pd
import numpy as np
df = pd.DataFrame({"a":["$car"], "b": ["$food"],"c":[np.nan]})

我的代码给我斜体结果 result

我的预期结果是 enter image description here

我知道这是jupyter notebook / python中的解释问题,请提出建议。

1 个答案:

答案 0 :(得分:1)

这是由于MathJax渲染导致的。

启动ipython笔记本时,请在不使用mathjax的情况下运行它

ipython notebook --no-mathjax