所以我有一个list / tuple / dict / etc,比如:
thing = [('6', '5x^6'), ('4', '3x^4'), ('3', '2x^3'), ('2', '-3x^2')]
我的目标是将其打印为
5x ^ 6 + 3x ^ 4 + 2x ^ 3 + -3x ^ 2
如果我打开数据
,我可以根据需要设置什么格式才能继续for key, number in thing:
print('{}'.format(number))
或者什么样的格式可以理解这种数据库?
答案 0 :(得分:0)
for key, number in thing:
list.append(number)
print(' + '.join(list))