1️⃣ upper( )
- 문자열.upper()
s = hello print(s.upper()) // HELLO 출력
2️⃣ lower( )
- 문자열.lower()
s = HELLO print(s.lower()) // hello 출력
1️⃣ isupper
- 문자열.isupper()
s = HELLO print(s.isupper) // True 출력 s = Hello print(s.isupper) // False 출력
2️⃣ islower
- 문자열.islower()
s = hello print(s.islower()) // True 출력 s = Hello print(s.islower()) // False 출력