본문 바로가기

Python 🎧

[Python] 입출력 - input/output

 

#입력
input("입력값")


#출력
print("출력값")

 

 

 

예시

print("hello " + input("what's ur name?"))