파이썬
파이썬 input
행복햐
2018. 1. 30. 17:23
설명
키보드로 숫자나 문자를 입력할 때 사용한다.
예제
>> x = input(" Enter value")
>> Enter value 5
>> print(x)
>> 5