str = ["a","b","c"]
print(str)
print(str[1:])
str.append(["d","e"])
print(str)
print(str[3])
str[3]="d"
print(str)
del str[3]
print(str)
str.remove("c")
print(str)
del str[str.index("b")]
print(str)
str.insert(1,"b")
print(str)
str+=["c", "d"]
print(str)
cnt = 0
while cnt < len(str):
print(str[cnt], end=" ")
cnt += 1
print()
cnt = 0
while cnt < len(str):
print(str[(cnt + 1) * (-1)], end=" ")
cnt += 1
print()
str.sort(reverse = True)
for listItem in str:
print(listItem, end=" ")
결과가 어떻게 출력될지 생각해보세요.
더보기
['a', 'b', 'c']
['b', 'c']
['a', 'b', 'c', ['d', 'e']]
['d', 'e']
['a', 'b', 'c', 'd']
['a', 'b', 'c']
['a', 'b']
['a']
['a', 'b']
['a', 'b', 'c', 'd']
a b c d
d c b a
d c b a
'프로그래밍 > 코딩일반' 카테고리의 다른 글
HTML Table Generator (0) | 2024.01.23 |
---|---|
파이썬 if 문의 관계연산자 처리 방법 3가지 비교 (0) | 2024.01.16 |
대학교 파이썬 시험문제 예시 (0) | 2022.11.07 |
web font(웹 페이지에서 다양한 폰트 사용) (0) | 2022.10.15 |
최고의 홈페이지 제작 툴 - nicepage (0) | 2022.10.13 |