본문 바로가기

분류 전체보기38

Python 크롤링 연습 프로젝트 - setting - project -> + 모양 -> beautifulSoup4 설치 from bs4 import BeautifulSoup html = ''' 기생충 ''' # 1. tag 조회 def ex1(): bs= BeautifulSoup(html, 'html.parser') print(bs) print(type(bs)) if __name__ == '__main__': ex1() >> 기생충 # 1. tag 조회 def ex1(): bs= BeautifulSoup(html, 'html.parser') # print(bs) # print(type(bs)) tag=bs.td print(tag) print(type(tag)) >> 기생충 tag = bs.a print(tag) print(ty.. 2019. 6. 18.
Python 클래스(1) 클래스, 인스턴스 메서드/ 멤버, 인스턴스 변 # class Point class Point: count_of_instance = 1000 def setx(self, x): self.x = x def sety(self, y): self.y = y def getx(self): return self.x def gety(self): return self.y def show(self): print(f'점[{self.x}, {self.y}]를 그렸습니다.') @classmethod def class_method(cls): return cls.count_of_instance @staticmethod def static_method(): print('static method clalled') > self라는 자기자신을 넣어줘야함 | bound instance M.. 2019. 6. 17.
Python 파일입출력 예제 import sys print(1) print('hello',' ','hello') # sep 파라미터 x =0.2 s='hello' print(str(x)+' ',s) print(x,s,sep=' ') # 기본적인 print() print(sep=' ',end='\n') # file 파라미터를 지정 print('hello world',file=sys.stdout) print('error: hello wold',file=sys.stderr) # file 출력 f=open('hello.txt','w') print( type(f) ) print('hello world',file=f) f.close() # 참고 sys.stdout.write('Heloo wORld?~') #textmode 가 default :.. 2019. 6. 17.
Python 모듈, import python 모듈 파이썬 프로그램 파일로 따로 함수나 변수를 정의 한다 파이썬 스크립트를 작성할 때 매번 비슷한 클래스, 함수 코드의 중복을 피하기 위해 공통 부분을 따로 빼서 모듈과 패키지로 만든다 모듈 : 변수, 함수, 클래스 등을 모아 놓은 스크립트 파일 패키지 : 여러 모듈을 묶은 것 모듈 검색 경로 import sys print(sys.path) > D:\PycharmProject\python_ch2.7, ... 모듈은 특정 디렉토리에서 찾게 된다. 실행되는 모듈의 위치는 기본적으로 포함된다 다른 프로젝트에 있는 모듈 가져오기 import sys sys.path.append('D:/PycharmProject/python-modules') print(sys.path) import mymath pr.. 2019. 6. 17.