ํํ
๋จ์ผ ๋ณ์์ ์ฌ๋ฌ ํญ๋ชฉ์ ์ ์ฅํ๋ ๋ฐ ์ฌ์ฉ๋๋ค.
์์๊ฐ ์๊ณ , ๋ณ๊ฒฝํ ์ ์๋ List
๋ฅ๊ทผ ๊ดํธ๋ก ์์ฑ๋๋ค.
1. ํ์
thistuple = ("ํผ์นด์ธ", "๋ผ์ด์ธ", "ํ์ด๋ฆฌ") #ํ ๋ฒ ์ ์ธํ๋ฉด ๊ฐ ๋ณ๊ฒฝ์ด ๋ถ๊ฐ๋ฅํ๋ค. ๋ฐ์ ํธ๋ฒ์ ์๊ฐํ ๊ฑฐ๊ธด ํ์ง๋ง..
print(thistuple)
2. ํํ ๊ธธ์ด
print(len(thistuple))
3. ํญ๋ชฉ ์ ๊ทผ
print(thistuple[1])
print(thistuple[-1])
print(thistuple[1:3])
4. ํํ๊ฐ ๋ณ๊ฒฝ ๋ฐฉ๋ฒ (์ต์ง๋ก ๋ณ๊ฒฝํ๋ ๋ฒ)
thistuple = ("ํผ์นด์ธ", "๋ผ์ด์ธ", "ํ์ด๋ฆฌ")
thiscast = list(thistuple) #casting ๋๋ ํ๋ณํ
thiscast[1] = "์ ๋ง๋ณด"
thistuple = tuple(thiscast) #๋ค์ ํํ๋ก ๋ฐ๊พธ๊ธฐ
print(thistuple)
5. ํํ ์์ถํ๊ธฐ
thistuple = ("ํผ์นด์ธ", "๋ผ์ด์ธ", "ํ์ด๋ฆฌ", "๊ผฌ๋ถ๊ธฐ")
(p1, p2, p3, p4) = thistuple
print(p1)
print(p2)
print(p3)
print(p4)
6. ๋ ๊ฐ ํํ ์กฐ์ธ
thistuple1 = ("ํผ์นด์ธ", "๋ผ์ด์ธ", "ํ์ด๋ฆฌ", "๊ผฌ๋ถ๊ธฐ")
thistuple2 = ("๋ฒํฐํ", "์ผ๋๋", "ํ์ด๋ฆฌ", "๊ผฌ๋ถ๊ธฐ")
thistuple3 = thistuple1 + thistuple2
print(thistuple3)
'๐์น ๊ฐ๋ฐ(Web) > ๐ํ์ด์ฌ(Python)' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
๋ณ์(variable) (0) | 2023.01.17 |
---|---|
๋ฌธ์์ด(String) (0) | 2023.01.17 |
Python List ์ด์ ๋ฆฌ (0) | 2023.01.16 |
Python ๋ด์ฅ ๋ฐ์ดํฐ ์ ํ ์ ๋ฆฌ (0) | 2023.01.16 |
๋ฐ์ง๋ฆ์ ์ ๋ฌํ๋ฉด ์์ ๋์ด๋ฅผ ๋ฐํํ๋ get_area() ํจ์ (0) | 2023.01.16 |