import 썸네일형 리스트형 [python] pandas 설치 후 import 했는데 오류날때 pandas 설치 후 import 했는데 오류날때 fails to pass a sanity check due to a bug in the windows runtime. See this issue for more information: https://tinyurl.com/y3dm3h86 RuntimeError: The current Numpy installation fails to pass a sanity check due to a bug in the windows runtime [duplicate] RuntimeError: The current Numpy installation fails to pass a sanity check due to a bug in the windows runtime I am u.. 더보기 [python] 파일을 입맛대로(pickle, glob, os.path) 6.2. 파일을 입맛대로(pickle, glob, os.path)파일을 입맛대로 요리할 수 있도록 여러 가지 비법을 전수해드리지요. 먼저 조금 복잡한 자료를 파일에 쓰고 읽는 방법부터 알아봅시다. 이럴 때는 pickle(피클)이란 모듈을 사용합니다. 왜 피자 먹을 때 나오는 반찬을 이름으로 붙였는지…예제로는 회원의 ID와 비밀번호를 파일에 저장하는 것을 생각해보았습니다.>>> users = {'kim':'3kid9', 'sun80':'393948', 'ljm':'py90390'} >>> f = open('d:/python21/exam/users.txt', 'w') >>> import pickle >>> pickle.dump(users, f) >>> f.close() 처음에 ID와 비밀번호를 users라는.. 더보기 이전 1 다음