My code looks something like this:
plants = ["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25"]
Grid_Of_Plants = """
|{}|{}|{}|{}|{}|
|{}|{}|{}|{}|{}|
|{}|{}|{}|{}|{}|
|{}|{}|{}|{}|{}|
|{}|{}|{}|{}|{}|
""".format(plants[0],plants[1],plants[2],plants[3],plants[4],plants[5],plants[6],plants[7],plants[8],plants[9],plants[10],plants[11],plants[12],plants[13],plants[14],plants[15],plants[16],plants[17],plants[18],plants[19],plants[20],plants[21],plants[22],plants[23],plants[24])
print(Grid_Of_Plants)
and if I run it, it turns into this:
|1|2|3|4|5|
|6|7|8|9|10|
|11|12|13|14|15|
|16|17|18|19|20|
|21|22|23|24|25|
As you can see, the space with the single-digit numbers isn't aligned properly. How can I fix it?