본문 바로가기

Import27

Python JSON 문자열을 파이썬에서 딕셔너리로 변환하기 [중복], Convert JSON string to dict using Python [duplicate] 질문 나는 Python에서 JSON에 조금 혼란스러워합니다. 나에게는 사전처럼 보입니다. 그래서 다음과 같이 시도하고 있습니다: { "glossary": { "title": "예시 용어집", "GlossDiv": { "title": "S", "GlossList": { "GlossEntry": { "ID": "SGML", "SortAs": "SGML", "GlossTerm": "표준 일반화 마크업 언어", "Acronym": "SGML", "Abbrev": "ISO 8879:1986", "GlossDef": { "para": "문서북과 같은 마크업 언어를 생성하는 데 사용되는 메타 마크업 언어입니다.", "GlossSeeAlso": ["GML", "XML"] }, "GlossSee": "마크업" } } }.. 2023. 10. 27.
Python 오류 "(유니코드 오류) 'unicodeescape' 코덱은 위치 2-3의 바이트를 디코드 할 수 없습니다: 잘린 \UXXXXXXXX 이스케이프" [중복], Error "(unicode error) 'unicodeescape' codec can't decode bytes in position 2-3: trunc.. 질문 I'm trying to read a CSV file into Python (Spyder), but I keep getting an error. My code: import csv data = open("C:\Users\miche\Documents\school\jaar2\MIK\2.6\vektis_agb_zorgverlener") data = csv.reader(data) print(data) I get the following error: SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 2-3: truncated \UXXXXXXXX escape I have tried to replace the \ w.. 2023. 10. 18.
Python 파이썬에서 상위 디렉토리를 어떻게 얻을 수 있나요?, How do I get the parent directory in Python? 질문 누군가가 Python에서 경로의 상위 디렉토리를 크로스 플랫폼 방식으로 얻는 방법에 대해 알려주실 수 있을까요? 예시: C:\Program Files ---> C:\ 그리고 C:\ ---> C:\ 만약 디렉토리에 상위 디렉토리가 없다면, 디렉토리 자체를 반환합니다. 이 질문은 간단해 보일 수 있지만, 구글에서 찾아내지 못했습니다. 답변 파이썬 3.4 pathlib 모듈을 사용하세요. from pathlib import Path path = Path("/here/your/path/file.txt") print(path.parent.absolute()) 이전 답변 다음을 시도해보세요: import os print os.path.abspath(os.path.join(yourpath, os.pardir)).. 2023. 10. 9.
Python2.6에서 안전하지 않은 HTTPS 요청 경고를 억제합니다., Suppress InsecureRequestWarning: Unverified HTTPS request is being made in Python2.6 질문 나는 pyVmomi를 사용하여 Python2.6에서 스크립트를 작성하고있다. 그리고 하나의 연결 방법을 사용하는 동안 다음과 같은 경고가 발생합니다: service_instance = connect.SmartConnect(host=args.ip, user=args.user, pwd=args.password) 다음 경고가 발생합니다: /usr/lib/python2.6/site-packages/requests/packages/urllib3/connectionpool.py:734: InsecureRequestWarning: 확인되지 않은 HTTPS 요청이 수행됩니다. 인증서 확인을 추가하는 것이 강력히 권장됩니다. 자세한 내용은 다음을 참조하십시오: https://urllib3.readthedocs.or.. 2023. 10. 7.