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
- Deep Learning for Computer Vision
- 데이터 분석
- 브라이틱스 스태킹
- Brightics 서포터즈
- 파이썬 내장 그래프
- michigan university deep learning for computer vision
- 서포터즈 촬영
- paper review
- Random Forest
- Brigthics Studio
- Brightics AI
- Activation Function
- 삼성 SDS 서포터즈
- 데이터 분석 플랫폼
- 딥러닝
- Python
- 삼성 SDS
- pymysql
- Brightics EDA
- 브라이틱스 분석
- 브라이틱스 서포터즈
- 검증 평가 지표
- 분석 툴
- Brightics studio
- 비전공자를 위한 데이터 분석
- 브라이틱스 프로젝트
- 머신러닝
- 범주형 변수 처리
- 브라이틱스 AI
- 파이썬 SQL 연동
Archives
- Today
- Total
목록Split (1)
하마가 분석하마

split() split() split() 메소드는 문자열을 쪼개 주는 메소드입니다. 먼저 가볍게 두 개의 변수에 원하는 입력값을 할당하는 법부터 보겠습니다. 먼저 input() 함수를 두 번 사용해서 변수 두 개에 할당할 수도 있습니다. ## input()을 두 개 사용하기 word1 = input() word2 = input() print(word1) print(word2) 다른 방법으로 input()과 split()을 함께 사용하여 한 번에 입력할 수도 있습니다. ## split()을 input()과 함께 사용하여 변수 할당하기 word1, word2 = input().split() print(word1) print(word2) split() 메소드의 괄호 안에 아무것도 들어있지 않다면 이는 공백을..
python
2021. 6. 30. 12:30