λμλ¬Έμ λ³ν λ©μλ upper()μ lower()
λ¬Έμμ΄ "apple"
μ "APPLE"
λ‘, "APPLE"
μ "apple"
λ‘ ν λ²μ λ³ννλ €λ©΄ μ΄λ»κ² ν΄μΌ ν κΉμ?
νμ΄μ¬μ λ¬Έμμ΄μ λμλ¬Έμλ₯Ό λ³ννλ ν¨μμΈ upper()
μ lower()
λ₯Ό μ 곡ν©λλ€.
λμλ¬Έμ λ³ν λ©μλμ μ¬μ©
upper()
λ©μλλ λ¬Έμμ΄μ λͺ¨λ λ¬Έμλ₯Ό λλ¬Έμλ‘ λ³ννκ³ , lower()
λ©μλλ λͺ¨λ λ¬Έμλ₯Ό μλ¬Έμλ‘ λ³νν©λλ€.
text = "Hello World!" upper_text = text.upper() # HELLO WORLD! print("upper_text:", upper_text) lower_text = text.lower() # hello world! print("lower_text:", lower_text)
λμλ¬Έμ λ³νμ μΈμ νμν κΉμ?
νλ‘κ·Έλλ°μμ λμλ¬Έμ λ³νμ μ κ·ν
λ₯Ό ν΅ν΄ μ¬μ©μκ° μ
λ ₯ν λ°μ΄ν°λ₯Ό νμ€ νμμΌλ‘ λ³νν λ μ£Όλ‘ μ¬μ©λ©λλ€.
μ κ·νλ? : μ κ·νλ λ°μ΄ν°λ₯Ό μΌκ΄λ ννλ‘ λ³ννλ κ³Όμ μ λ»ν©λλ€. μλ₯Ό λ€μ΄ ν μ€νΈλ₯Ό λΉκ΅ν λ λͺ¨λ λ¬Έμλ₯Ό μλ¬Έμλ‘ λ°κΎΈκ±°λ, 곡백μ μ κ±°νλ λ±μ μμ μ μννλ κ²μ΄ μ κ·νμ λλ€.
user_input = "PyThOn" standardized_input = user_input.lower() if standardized_input == "python": print("μΌμΉν©λλ€!") else: print("λΆμΌμΉν©λλ€.")
νμ΄μ¬μμ λ¬Έμμ΄μ λͺ¨λ λ¬Έμλ₯Ό λλ¬Έμλ‘ λ³ννλ ν¨μλ 무μμΈκ°μ?
Guidelines
AI Tutor
Publish
Design
Upload
Notes
Favorites
Help
Code Editor
Execution Result