문자열 접합, 두 문자열을 접속하여 하나의 문자열로 만드는 연산.
1 2 3 4 5 6 7 | print("You can concatenate two " + "strings with the '+' operator.") str1 = 'Hello' str2 = ' World' str3 = str1 + str2 print(str3) |
(Python3 로 작성된 예제 코드 입니다.)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | #include <iostream> #include <string> using namespace std; int main(void) { string str1 = "Hello "; string str2 = "World"; string str3 = str1 + str2; cout << str3 << endl; return 0; } |
(C++로 작성된 예제 코드 입니다.)
'나의 백과사전' 카테고리의 다른 글
루프 언롤링 ( loop unrolling ) (0) | 2014.09.19 |
---|---|
리스트 슬라이스 (list slicing) (0) | 2014.09.19 |
플로우 차트 (flow chart) (0) | 2014.09.13 |
디버거 (Debugger) (0) | 2014.09.13 |
Script (스크립트) (0) | 2014.09.13 |