Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 31 |
Tags
- 셔뱅
- finalize
- 파이참
- generic programming
- constructor
- 자바
- 얕은 복사
- 스트림
- has-a
- Up Casting
- lambda
- arraycopy
- Inbound
- Stream
- shebang
- Java
- pycharm
- 깊은 복사
- dbeaver
- down casting
- node.js
- singletone
- public static final
- 엔드포인트
- parameter group
- 내부클래스
- extends
- identityHashCode
- access modifier
- Wrapper class
Archives
- Today
- Total
٩(๑•̀o•́๑)و
print 본문
# sep : 값 사이 문자 넣기
>>> print(1, 2, 3)
1 2 3
>>> print('hello','world')
hello world
>>> print(1,2,3,sep=',')
1,2,3
>>> print('hello','world',sep='! ')
hello! world
>>> print(1,2,3,sep='\n')
1
2
3
# end : print 후 \n이 아닌 다른 것으로 바꿀 경우
>>> print(1); print(2); print(3);
1
2
3
>>> print(1, end=''); print(2, end=''); print(3);
123