#python #anaconda #jupyter-notebook #visual-code #html #css #javascript #http

제목extend 함수2018-11-12 04:12
작성자

list_a = [1,2,3]

output = list_a.extend([1,2,3])

print(list_a)

print(output)


을 실행하면 왜 print(output) 이 None 이라고 뜨는걸까요?

댓글