입력,출력
입력하기
word = input("hello there, input your message")
# hello there, input your message출력하기
print("hello world") # 문자형 # hello world
print(1) # 숫자형 1
print(['a','b','c']) # 자료형 ['a','b','c']입력과 출력
word = input("hello there, input your message")
# hello there, input your message
print(word) # 입력한 값을 인자값으로 받아 출력합니다.Last updated