'slicing' 태그의 글 목록 — 뚝딱이

slicing

Python/이론, 기초

[Python] 문자열 - Indexing, Slicing, Count, Find, Index, Join, Replace, Split

문자열 생성 (Immutable) print(' hello world ') print(" hello world ") print(''' hello world ''') print(""" hello world """) 이스케이프 코드 \' : 따옴표 문자 \" : 쌍따옴표 문자 \ : backslash 문자 \a : bell 문자 \b : backslash 문자 \f : Formfeed 문자 \n : newline 문 \r : carriage return 문자(\n와 동일하지 않다.) \t : tab 문자 \v : vertical tab 문자 문자열 연산 + 와 * 연산 가능 a = "hello " b = "world " print(a + b) print(a * 2) print(b * 5) print(a * ..

파송송
'slicing' 태그의 글 목록