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