일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- C#
- ubuntu
- pandas
- 명령어
- Docker
- Python
- label
- windows forms
- C
- YOLO
- 프로그래머스
- OpenCV
- JSON
- 채보
- mysql
- pytorch
- VS Code
- C++
- paramiko
- Linux
- LIST
- SSH
- 핑거스타일
- pip
- Numpy
- Visual Studio
- error
- Selenium
- 오류
- 기타 연주
- Today
- Total
목록문자열 (3)
기계는 거짓말하지 않는다
JSON 데이터가 포함된 문자열 또는 출력에서 JSON 데이터만 파싱(parsing) 하는 간단한 예제이다.jsoncpp 라이브러리가 필요하다.Ubuntu에서 jsoncpp 라이브러리 설치sudo apt-get install libjsoncpp-devln -s /usr/include/jsoncpp/json/ /usr/include/json예제 코드#include #include #include #include // JSON 문자열 파싱std::vector extract_json_strings(const std::string& input_string) { std::vector json_strings; int start_brace_index = -1; int end_brace_index = ..
문자열은 immutable이므로 문자 수정이 불가능하다. List 변경 후 다시 문자열로 변환하는 방법이 있다. temp_str = "ABCDEF" temp_str = list(temp_str) temp_str[0] = "g" temp_str[1] = "h" temp_str = "".join(temp_str) print(f"Change String: {temp_str} (Type: {type(temp_str)})")
변수 할당 x, y, z = 'aa', 'bb', 'cc' print(x + ' ' + y + ' ' + z) x, y, z = [[1, 2], [3, 4],[5, 6]] print(x, y, z) 단일 변수 할당 가능하고 위와 같이 동시에 여러 값 할당 가능. 2차원 리스트도 위와 같이 나누어서 할당 가능 데이터 타입 확인, 지정 print(type("str")) # 데이터 타입 확인 print(type(5.234)) print(type(20)) x = int(5.2) # 데이터 타입 지정 y = float(4) z = str(124) print(x, y, z) print(type(x), type(y), type(z)) 문자열 string = """여러 줄에 걸친 긴 문자열은 따옴표 3개로 표현. 두 ..