본문 바로가기
Python/프로그래머스

프로그래머스 - 배열 두 배 만들기 (python)

by sophia02 2022. 10. 29.
def solution(numbers):
    n = 0
    answer = []
    for i in numbers:
        n = i * 2
        answer.append(n)
    return answer