I'm wondering how to have a list with all the same items, but the length be equal to and equation, for example:
myList = 'a' * 10
but this gives you
myList = 'aaaaaaaaaa'
when I want
myList = a, a, a, a, etc.
I'm wondering how to have a list with all the same items, but the length be equal to and equation, for example:
myList = 'a' * 10
but this gives you
myList = 'aaaaaaaaaa'
when I want
myList = a, a, a, a, etc.