๐์ฌ๊ธฐ์๋๐ ํ๋ฒ ๊ธฐ๋กํ๋ ์ ์ด ์์์ง๋ง, ์ข ์ข ๊น๋จน๊ธฐ์ ๋ค์ ์์ฑํด๋ณด๊ธฐ๋ก ํ๋ค
https://melody-coding.tistory.com/46
tuple์์ ๋ฌธ์์ด๋ก ๋ฐ๊ฟ์ผ ํ ์ผ์ด ์๊ฒผ๋ค
list์์ ๋ฌธ์์ด๋ก ๋ฐ๊พธ๋ ๊ฒ๊ณผ ๋๊ฐ์ด ํ๋ฉด ๋๋ ๊ฒ ์๋๊ฐ?
๐ list, tuple -> ๋ฌธ์์ด
temp=['a','b','c'] #list
temp=('a','b','c') #tuple
print(''.join(temp)) #๊ฒฐ๊ณผ) abc
์์ ๊ฐ์ด join์ ์ฌ์ฉํ์์ง๋ง ์๋ฌ๊ฐ ๋ฐ์ํ์๋ค.
๋ ์ ๋ฒ์ ์ค์๋ฅผ ๋๊ฐ์ด ํ์๊ณ ๋ ๊ฒ์์ ๊ธธ๋ก ๋น ์ ธ๋ค์๋ค.
์ด์ ๋ ๋ด๊ฐ ์์ฑํ tuple์ ๊ฐ์ด intํ์ด์๊ธฐ ๋๋ฌธ์ด์๋ค.
๐ ํด๊ฒฐ ๋ฐฉ๋ฒ)
temp=(1,2,3)
print(' '.join(map(str,temp))) # 1 2 3
map์ ํ์ฉํ์ฌ str๋ก ๋ฐ๊ฟ์ค ํ join์ ํด์ค๋ค.
'๐Coding > ๐Python3' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[Python] ์์คํค์ฝ๋ (0) | 2021.10.20 |
---|---|
[Python] ์์์ ์๋ฆฌ ์ ์ถ๋ ฅ (0) | 2021.10.04 |
[Python] heapq (0) | 2021.08.20 |
[Python] lambda (0) | 2021.07.29 |
[Python] ์์ด, ์กฐํฉ (0) | 2021.05.16 |