본문 바로가기

파이썬 공부2392

파이썬 Cartesian product of x and y array points into single array of 2D points 그리드의 x 및 y 축을 정의하는 두 개의 numpy 배열이 있습니다. 예를 들면 : x = numpy.array([1,2,3]) y = numpy.array([4,5]) 이 배열의 데카르트 곱을 생성하여 생성하고 싶습니다. array([[1,4],[2,4],[3,4],[1,5],[2,5],[3,5]]) 루프에서이 작업을 여러 번 수행해야하므로 그렇게 비효율적이지 않습니다. 나는 그것들을 Python 목록으로 변환하고 itertools.product 를 사용하고 numpy 배열로 다시 변환하는 것이 가장 효율적인 형식이 아니라고 가정하고 있습니다. 해결 방법 >>> numpy.transpose([numpy.tile(x, len(y)), numpy.repeat(y, len(x))]) array([[1, 4.. 2021. 2. 14.
파이썬 len () 함수의 비용 해결 방법 언급 한 모든 유형과 set 및 array.array . 참조 페이지 https://stackoverflow.com/questions/1115313 2021. 2. 14.
파이썬 how to issue a "show dbs" from pymongo pymongo를 사용하고 있는데 "show dbs"에 해당하는 mongodb 대화 형 쉘을 실행하는 방법을 알아낼 수 없습니다. 해결 방법 from pymongo import MongoClient # Assuming youre running mongod on 'localhost' with port 27017 c = MongoClient('localhost',27017) c.database_names() 참조 페이지 https://stackoverflow.com/questions/11162551 2021. 2. 13.
파이썬 Python 정규식 예제 HTML에서 숫자를 추출하는 간단한 정규식을 Python으로 작성하고 싶습니다. HTML 샘플은 다음과 같습니다. Your number is 123 이제 "123", 즉 문자열 "Your number is"뒤의 첫 번째 굵은 텍스트의 내용을 어떻게 추출 할 수 있습니까? 해결 방법 import re m = re.search("Your number is (\d+)", "xxx Your number is 123 fdjsk") if m: print m.groups()[0] 참조 페이지 https://stackoverflow.com/questions/11171045 2021. 2. 13.
파이썬 How can I use pickle to save a dict? 해결 방법 이 시도: import pickle a = {'hello': 'world'} with open('filename.pickle', 'wb') as handle: pickle.dump(a, handle, protocol=pickle.HIGHEST_PROTOCOL) with open('filename.pickle', 'rb') as handle: b = pickle.load(handle) print a == b 참조 페이지 https://stackoverflow.com/questions/11218477 2021. 2. 13.
파이썬 객체가 JSON 직렬화 가능하지 않습니다. Mongodb 및 Python (Flask)에 문제가 있습니다. 이 api.py 파일이 있고 모든 요청과 응답이 JSON에 있기를 원하므로 그렇게 구현합니다. # # Imports # from datetime import datetime from flask import Flask from flask import g from flask import jsonify from flask import json from flask import request from flask import url_for from flask import redirect from flask import render_template from flask import make_response import pymongo from pymongo.. 2021. 2. 13.
파이썬 Python 2.7로 py2exe를 설치할 수 없습니다. 다른 사람이이 문제를 생각해 내고 해결 방법을 알아 냈습니까? 해결 방법 참조 페이지 https://stackoverflow.com/questions/11288923 2021. 2. 13.
파이썬 Python-파일과 열기를 사용하는 경우 Python에서 file 과 open 의 차이점은 무엇입니까? 어느 것을 사용해야합니까? (내가 2.5라고 말해줘) 해결 방법 항상 open () 을 사용해야합니다. 파일을 열 때 더 좋습니다 to use open() instead of invoking this constructor directly. file is more suited to type testing (for example, "isinstance (f, file)"작성). 참조 페이지 https://stackoverflow.com/questions/112970 2021. 2. 13.
파이썬 문자열에서 단어 수를 찾는 방법은 무엇입니까? " Hello I am going to I with hello am "문자열이 있습니다. 문자열에서 단어가 몇 번 나오는지 알고 싶습니다. 예제 hello는 2 번 발생합니다. 문자 만 인쇄하는이 방법을 시도했습니다. def countWord(input_string): d = {} for word in input_string: try: d[word] += 1 except: d[word] = 1 for k in d.keys(): print "%s: %d" % (k, d[k]) print countWord("Hello I am going to I with Hello am") 단어 수를 찾는 방법을 배우고 싶습니다. 해결 방법 개별 단어의 개수를 찾으려면 count 를 사용하세요. input_string.co.. 2021. 2. 13.
파이썬 How to check if variable is string with python 2 and 3 compatibility python-3.x에서 isinstance (x, str) 를 사용할 수 있다는 것을 알고 있지만 python-2.x에서도 문자열인지 확인해야합니다. isinstance (x, str) 가 python-2.x에서 예상대로 작동합니까? 아니면 버전을 확인하고 isinstance (x, basestr) 를 사용해야합니까? 특히 python-2.x에서 : >>>isinstance(u"test", str) False 그리고 python-3.x에는 u "foo"가 없습니다. 해결 방법 from six import string_types isinstance(s, string_types) 참조 페이지 https://stackoverflow.com/questions/11301138 2021. 2. 13.