문자열1
# 문자열
s = 'abcdef'
s = "abcdefg"
print(s)
결과
abcdefg
문자열2
print(s[3])
print(s[2 : 5])
print(s[2 : 7 : 2])
결과
d
cde
ceg
문자열3
a = 10
b = 'def'
s = 'head {} tail {}'.format(b, a)
print(s)
결과
head def tail 10
문자열4
s = '........abc'
s2 = ' abc'
#print(s)
print(s.lstrip('.'))
결과
abc
문자열5
s = 'Return a list of the substrings in the string, using sep as the separator string.'
print(s.split(','))
결과
['Return a list of the substrings in the string', ' using sep as the separator string.']
'백엔드개발자 준비하기 - 파이썬' 카테고리의 다른 글
[파이썬] 형변환 (0) | 2023.02.03 |
---|---|
[파이썬] 데이터 처리 (0) | 2023.02.03 |
[파이썬] 함수 (0) | 2023.02.02 |
[파이썬] 조건문, 반복문 (0) | 2023.02.02 |
[파이썬] list, tuple, set, dictionary (0) | 2023.01.31 |