"Life is too short, You need Python."
문자열 자료형
"Life is too short, You need Python"
'Life is too short, You need Python'
"""Life is too short, You need Python"""
'''Life is too short, You need Python'''
#여러 줄인 문자열
"""
Life is too short
You need Python
"""
"Life is too short \n You need Python" #이스케이프 코드 \n의 활용
문자열 연산하기
# 문자열 더하기
head = "apple"
tail = " is good"
head + tail #"apple is good" 출력
# 문자열 곱하기
a = 'python'
a*2 #'pythonpython' 출력
+) 문자열 곱하기 응용
#multistring.py
print("="*50)
print("Welcome")
print("="*50)
==================================================
Welcome
==================================================
문자열 연산하기
문자열 포매팅(Formatting)
"I eat %d apples." %3
#"I eat 3 apples."이 출력
#a = 3, % = a 와 같이 변수를 이용하는 방법도 있다.
2 개 이상의 값을 넣고 싶으면 마지막 % 다음 괄호에 ( 00, 00)꼴을 이용하면 된다.
문자열 포멧 코드 | |
%s | String |
%c | 문자 1개 (Character) |
%d | Intefer |
%f | Floating-point |
%o | 8진수 |
%x | 16진수 |
%% | 문자 % |
* %s는 자동으로 % 뒤에 오는 값을 문자열로 변환, 즉 모든 형태의 값이든 문자열로 입력이 가능하다
'Datascience > Python' 카테고리의 다른 글
[Python] #4 튜플과 딕셔너리 자료형 (0) | 2023.01.21 |
---|---|
[Python] #2 숫자 자료형 (0) | 2023.01.19 |
[Python] #1 기초 문법 예제 (0) | 2023.01.19 |