如何将整数与字符串连接起来?

时间:2018-07-19 04:24:07

标签: python string pandas concatenation

我是python的新手。

如何获取这样的字符串:

53 (46.49 %)

但是,我得到了:

1    53 (1    46.49 %)

我正在尝试从表计数和比例中获取最后一个值(我不确定在python中它叫什么)

table = pd.value_counts(data[var].values, sort=False)
prop_table = (table/table.sum() * 100).round(2)

num = table[[1]].to_string()
prop = prop_table[[1]].to_string()

test = num + " (" + prop + " %)"

但是,它将1放在显示数字之前。

0 个答案:

没有答案