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 |
Tags
- 주간회고
- 뇌정리
- hackerrank
- Real MySQL
- 2020년 제4회 정보처리기사 필기 문제 분석
- sqldeveloper
- 정보처리기사
- git
- 책리뷰
- post
- algorithms
- Python
- 코드숨
- Jackson
- jsp
- 미니프로젝트
- LeetCode
- If
- 함수형 코딩
- 2020년 일정
- java
- 필기
- Til
- 서평
- 스터디
- 회고
- 성적프로그램
- 2020년 정보처리기사 4회
- 알고리즘
- 항해99
Archives
- Today
- Total
목록slice (1)
조컴퓨터

String 문자열 데이터 " 와 ' 로 감싸여진 데이터를 말한다. msg1= "Life is too short" msg2= 'You need Python' print(msg1) #Life is too short print(msg2) #You need Python print(msg1 + msg2) #Life is too shortYou need Python print(msg1 + " " + msg2) #Life is too short You need Python name="Python" print(name*50) #Python이 50차례 반복 출력된다 print(123+456) #579 print("123"+"456") #123456 또는 case1= "Life is \'too\' short" print..
자바 웹개발자 과정/Python
2020. 8. 26. 22:21