This is the code:
def main():
    for i in range(1, 11):
        for j in range(1, 11):
            print(i*j, " ", end="")
        print()
main()
It should look like that with perfect lines and spaces between them. So how do i add spaces between them so that i can see it in the print screen

 
     
     
    