SyntaxFix
Write A Post
Hire A Developer
Questions
#multiplying each element in the list and adding it into an empty list original = [1, 2, 3] results = [] for num in original: results.append(num*2)# multiply each iterative number by 2 and add it to the empty list. print(results)