-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
STEP 4. 1차원 배열 #5
Labels
STEP
단계
Comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
단계 설명
문제 / 코드보기
새로 알게된 점
lines = sys.stdin.readlines()
의 반환값은?List index 찾는 방법?
List 값 채우기
List 를 문자열로 바꾸기 (단, 원소의 타입이
str
이여야 join이 가능함)List 특정 index 값 수정하기
List index 위치 변경하기
List 값으로 index 위치 찾기 ( 값이 없을 경우,
ValueError
발생 )list.index(value, start, stop)
List 값 뒤집는 방법 1: Slicing Revercse
list[::-1]
List 값 뒤집는 방법 2: reverse 함수
list.reverse()
List 값 뒤집는 방법 3: reversed 함수
reversed(list)
The text was updated successfully, but these errors were encountered: