python中的打印表格,求友友们帮助我

这个怎么做

img

这样写即可:

print('a\tb\ta**b')
for x in range(1,6):
    print(x,'\t',x+1,'\t',x**3)

如有帮助,请点采纳该答案