Quick question... searched and didn't find anything. I have this list:
list = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 10, 10, 10]
I want to have each value repeated 3 more times in the same list... How do I do so? I tried some for loops that .append to the list but things got messy. I ended up getting some list in list that were in lists. I have a feeling .append is not right for this scenario.