๋ฌธ์์ด์ ํ์ด์ฌ์์ ๊ฐ์ฅ ์ธ๊ธฐ์๋ ์๋ฃํ์ ๋๋ค. ๋ฌธ์๋ฅผ "" (์๋ฐ์ดํ), ''(์์๋ฐ์ดํ) ๋ก ๋ฌถ์ด ๊ฐ๋จํ๊ฒ ๋ง๋ค ์ ์์ต๋๋ค. ์๋ฐ์ดํ์ ์์๋ฐ์ดํ๋ฅผ ํผ์ฉํ ์๋ ์์ต๋๋ค. ํฐ๋ฐ์ดํ ์์ ์์๋ฐ์ดํ๊ฐ ๋ค์ด๊ฐ ์ ์๊ณ , ๋ฐ๋๋ก ์์๋ฐ์ดํ ์์ ํฐ๋ฐ์ดํ ๋ค์ด๊ฐ ์ ์์ต๋๋ค.
var1 = 'Hello World!'
var2 = "It's a good thing"
๋ฌธ์์ด ๋ถ๋ถ์งํฉ์ ์ก์ธ์คํ๋ ค๋ฉด ๋๊ดํธ์ ๋ฌธ์์ด ์ธ๋ฑ์ค๋ฅผ ์ฌ์ฉํ์ฌ ๋ฌธ์์ด ๋ถ๋ถ์ ๊ฐ์ ธ์ค๋ฉด ๋ฉ๋๋ค.
var1 = 'Hello World!'
var2 = "Python Programming"
print "var1[0]: ", var1[0]
print "var2[1:5]: ", var2[1:5]
#์ถ๋ ฅ๋ ๊ฒฐ๊ณผ
var1[0]: H
var2[1:5]: ytho
๋ณ์๋ฅผ ๋ค๋ฅธ ๋ฌธ์์ด์ ํ ๋นํ์ฌ ๊ธฐ์กด ๋ฌธ์์ด์ "์ ๋ฐ์ดํธ"ํ ์ ์์ต๋๋ค. ์ ๊ฐ์ ์ด์ ๊ฐ ๋๋ ์์ ํ ๋ค๋ฅธ ๋ฌธ์์ด๊ณผ ๊ด๋ จ๋ ์ ์์ต๋๋ค. ์๋ฅผ ๋ค์ด
var1 = 'Hello World!'
print "Updated String :- ", var1[:6] + 'Python'
#์ถ๋ ฅ๋ ๊ฒฐ๊ณผ
Updated String :- Hello Python
์ฌ๋ฌ ์ค์ ๋ฌธ์๋ฅผ ์ ๋ ฅํ ๋๋ """ ํฐ๋ฐ์ดํ 3๊ฐ๋, ''' ์์๋ฐ์ดํ 3๊ฐ๋ฅผ ์ ๋ ฅํฉ๋๋ค. \n ์ผ๋ก ํ์๋๋ ๋ถ๋ถ์ด newline๋ฌธ์๋ก ์ด์ ๋ฐ๊ฟ์ฃผ๋ ์ด์ค์ผ์ดํ ๋ฌธ์์ ๋๋ค.
para_str = """this is a long string that is made up of
several lines and non-printable characters such as
TAB ( \t ) and they will show up that way when displayed.
NEWLINEs within the string, whether explicitly given like
this within the brackets [ \n ], or just a NEWLINE within
the variable assignment will also show up.
"""
print para_str