# 1Multiple Choice
다음 중 2차원 리스트를 초기화하는 올바른 방법은 무엇인가요?
A = [[], [], []]
A = [[] * 3]
A = [[], [], []] * 3
A = [[0]*3 for _ in range(3)]




4 questions
Allow incorrect answer
Hide answer
public quiz
You can't enter this quiz right now. Please ask the quiz creator to reactivate their plan or edit the quiz.