정답
print("안녕하세요?")
name = input("이름이 어떻게 되시나요?")
print(f"만나서 반갑습니다. {name}씨")
print(f"이름의 길이는 {len(name)}입니다.")
age= int(input("나이가 어떻게 되시나요? "))
print(f"내년이면 {age+1}이 되시는군요")
728x90
'Programming > Python' 카테고리의 다른 글
[Python] 조건문 if? else if? elif? else? (0) | 2024.01.10 |
---|---|
[Python] 슬라이싱 인덱스 자르기 [1:4] (1) | 2024.01.08 |
Python 웹브라우저(URL) 열기 (import webbrowser) (0) | 2024.01.04 |
turtle 모듈 t.color 와 t.fillcolor 차이점 (1) | 2024.01.04 |
Python 입력함수 input (aka. scanf) (0) | 2024.01.04 |