I'm new to python, and want to make something like this in list format so then I can use csv writer.
["Structure1", "Structure2", ... "Structure50"]
I understand I can use "Structure "*50 to get Structure repeated 50 times, but how to get it into a list as well as append a number?
Thanks!