I would like to have this output:
* * *
2 2 2
4 4 4
6 6 6
8 8 8
I cannot get it and I've tried many ways, but my code doesn't seem to work. Here is my current code:
for row in range(3):
print ("*", end = " ")
print ()
for col in range(2,9,2):
print (row, end = " ")
print ()
print()
What do I do?