Wiki
Books
Shop
Courses
Careers
Change language
English
Italiano
Deutsch
Français
Español
Türk
Русский
Português
Polski
Nederlandse
中文
한국어
日本語
हिन्दी
Python.Engineering
Wiki
Python에서 대괄호와 괄호로 묶인 목록의 차이점은 무엇입니까?
Python에서 대괄호와 괄호로 묶인 목록의 차이점은 무엇입니까?
code Python module
|
os Python module
|
Python functions
|
re Python module
|
square
|
StackOverflow
Michael Zippo
11.03.2022
<프리><코드>>>> x=[1,2] >>> x[1] 2 >>> x=(1,2) >>> x[1] 2
둘 다 유효한가요? 어떤 이유로 선호됩니까?