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
- 판다스
- 넘파이
- pycharm
- down casting
- arraycopy
- dbeaver
- ai능력시험
- 얕은 복사
- aice associate
- 파이참
- Aice
- 자바
- Inbound
- Up Casting
- access modifier
- Stream
- 엔드포인트
- Python
- 파이썬
- pandas
- singletone
- extends
- generic programming
- 셔뱅
- identityHashCode
- public static final
- 스트림
- Java
- parameter group
- has-a
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