####### 有帮助望采纳!!
print("{0:<8}{1:<8}{2:<8}".format('number', 'square', 'cube')) for i in range(11): print("{0:<8}{1:<8}{2:<8}".format(i, i*i, i*i*i))