728x90
반응형
+ 연산자 사용하기
- 두 개 이상의 문자열을 더하듯이 연결하여 새로운 문자열을 합칠수 있다.
string1 = "Hello"
string2 = "World"
result = string1 + " " + string2
print(result) # 출력: Hello World
f-string 사용하기
- 파이썬 3.6 버전부터 도입된 f-string은 문자열 안에 변수를 삽입하여 더욱 간결하게 문자열을 합칠수 있다.
name = "Alice"
age = 30
result = f"My name is {name} and I am {age} years old."
print(result) # 출력: My name is Alice and I am 30 years old.
format() 메서드
name = "Bob"
result = "My name is {}".format(name)
print(result) # 출력: My name is Bob
join() 메서드 사용하기
- 리스트나 튜플 등의 반복 가능한 객체에 있는 문자열들을 특정 문자열로 연결하여 하나의 문자열로 만들 때 사용합니다.
words = ["apple", "banana", "cherry"]
result = "-".join(words)
print(result) # 출력: apple-banana-cherry
728x90
반응형
'03.Program > 03.Python' 카테고리의 다른 글
[Python] tuple 와 dict 차이 및 사용법 (0) | 2024.09.30 |
---|---|
[Pycharam] 프로젝트 여러개 실행 (0) | 2022.05.22 |
[Matplotlib] Matplotlib 을 이용한 차트 그리기 For Tibero (0) | 2022.04.25 |
[Python] 파이썬 가상 환경 사용법 [python2.7,python3.7] (0) | 2022.04.15 |
[Python]리눅스 pexpect 를 이용한 사용자 패스워드 일괄변경 (0) | 2022.04.15 |