티스토리 뷰

len() 문자열의 길이 구하기 

count() 문자열 개수 구하기

find()문자가 처음 나오는 위치 반환

index() 문자가 처음나온느 위치 반환

join() 문자열 사이에 문자 삽입 

upper()소문자를 대문자로 

replace():문자열 바꾸기

-replace(원본, 문자열)

split() 문자열 나누기 

-인수가 없으면 공백 을 기준

예시 모음

#할당 연산자
x = 10
y = 2.5

print(type(x))


print(f'{y}의 자료형(data type)=>{type(y)}')

#산술연산자
print(f'{x} // {y} = {x//y}')

#산술연산자와 함께 사용한 할당 연산자
z= x + 10
print(f'x={x}, z={z}')
x += 10
print(f'x={x}')

#비교 연산자
print(x>y) 
print(x<=y)

#논리 연산자
print ( (x>y) or (x<y) )
print ( (x>y) and (x<y))

print ( (x>y) and (z>y))

#문자열 더하기 
x = 'hel lo '
y = 'Pythono!'

print(x+y)
#문자열 곱하기
print("-"*50)

#문자열 인덱싱 
print(x[2])
print(x[1]   )

#문자열 슬라이싱 
print(y[1:])

#len() 
print (len(x))

#count()
print(x.count("o"))

#find()
print(y.find("o"))

#join()
print('-'.join(x))

#upper()
print(x.upper())

#lower()
print(x.lower())

#replace()
print(y.replace("Py", "*"))

#split()
print(x.split())

 

공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2025/01   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
글 보관함