본문 바로가기
Python

python input, print

by NaHyungMin 2019. 9. 2.

number = input("insert coin :");

print(number);

insert coin :10
10

 

print("life" "is" "too short");

lifeistoo short

 

print("life" + "is" + "too short");

lifeistoo short

 

print("life""is""too short");

life is too short

'Python' 카테고리의 다른 글

python class  (0) 2019.09.04
python file 입출력  (0) 2019.09.03
python lambda  (0) 2019.09.02
python 함수3  (0) 2019.09.02
python 함수2  (0) 2019.09.02