I currently have
for i in range (1,26,1):
for e in range (1,7,1):
print i**e
I am supposed to get the outcome:
1 1 1 1 1
2 4 8 16 32
3 9 27 81 243
…
25 625 15625 390625 9765625
by nesting a for statement within a for statement, but when I run this code every number ends up on its own line. How do I get it to format like the above example?