I was to be able to create a file using python which has data in the specific format shown below. It starts from 00000# where # is 1 and goes all the way to 100000. The same number is present in each line before and after the text My Team.
#output file
000001 My Team 000001
000002 My Team 000002
...all the way to
100000 My Team 100000
I am not sure on how to do this format creation in python. I know it is something simple but I am a bit lost on how to proceed. I am very new to python and I would appreciate if anyone can give me some guidance on this.
Thank you to all.