On the day 3 there was that last question: Write a Python script that displays the following table
1 1 1 1 1
2 1 2 4 8
3 1 3 9 27
4 1 4 16 64
5 1 5 25 125
Now I was able to recreate it using this code: for row in range(1, 6):
print(row, end=" ")
for col in range(0, 4):
print(row ** col, end=" ")
print()