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
- Linux
- paramiko
- LIST
- error
- C#
- YOLO
- JSON
- C++
- pip
- 핑거스타일
- pytorch
- VS Code
- label
- Python
- pandas
- Selenium
- Visual Studio
- 프로그래머스
- 채보
- SSH
- 컨테이너
- Docker
- Numpy
- mysql
- 오류
- windows forms
- OpenCV
- C
- ubuntu
- 기타 연주
Archives
- Today
- Total
목록stdout (1)
기계는 거짓말하지 않는다
Python JSON 문자열이 포함된 문자열, output string(stdout)을 JSON 객체로 파싱(parsing)
Python에서 stdout이 JSON 형식의 문자열이거나 문자열 내부에 JSON 문자열이 포함되어 있을 경우 파싱 하는 함수이다. 여러 케이스에 대하여 검증되지는 않았다. import json def extract_json_strings(input_string): json_strings = [] start_brace_index = -1 end_brace_index = -1 open_brace_count = 0 close_brace_count = 0 for i, char_ in enumerate(input_string): if char_ == '{': open_brace_count += 1 if open_brace_count == 1: start_brace_index = i if char_ == '}' ..
Python
2024. 1. 1. 19:05