아래의 print문은 동일한 결과값을 출력한다.
print("Life" "is" "too short")
>>Lifeistoo short
print("Life"+"is"+"too short")
>>Lifeistoo short
띄어쓰기는 콤마로 한다.
print("Life","is","too short")
>>Life is too short
print문으로 출력시 결과값을 한 줄로 출력하고 싶을 때는 매개변수 end를 사용하자.
for i in range(10):
print(i, end=' ')
>> 0 1 2 3 4 5 6 7 8 9
'프로그래밍 > BOJ_Python 목표는 Diamond' 카테고리의 다른 글
깃헙 커밋 메시지 규칙 (0) | 2022.07.12 |
---|---|
[ Python | 백준 5622] 다이얼 (0) | 2022.06.04 |
VS code SyntaxError: invalid syntax 해결 방법 (0) | 2022.05.30 |
[파이썬 | 백준 10171] 고양이 (0) | 2022.05.10 |
파이썬 함수의 종류 4가지 (0) | 2022.04.10 |