본문 바로가기

분류 전체보기544

파이썬 함수 document 작성법 `__doc__` 파이썬 함수 document 작성법 __doc__¶ 파이썬 함수를 만들면, 작성한 함수에 대한 설명을 위해 document를 작성합니다. document 작성은 함수 이름 바로 밑에 """ """ 를 이용하는 방법과 __doc__ 메소드를 이용하는 방법이 있습니다. """ """ doc을 사용하는 방법 In [1]: def my_function(parameter): """ Function to say hello to someone with quote""" print(f"Hello {parameter}") In [2]: # help 함수를 이용하여 document 내용을 확인할 수 있습니다. help(my_function) Help on function my_function in module __main_.. 2023. 4. 9.
공 튀기기 css / bounding ball css 공을 튀기는 css 코드는 아래와 같습니다. animation과 @keyframe 을 이용하여 움직임효과를 주었습니다. HTML 삽입 미리보기할 수 없는 소스 [참고로] border-radius를 이용하여 원 그리기 위한 코드는 아래와 같습니다! HTML 삽입 미리보기할 수 없는 소스 2023. 4. 9.
텐서 모양 별 실제 데이터 확인 In [1]: import torch torch.Size([14]) 실 데이터 확인¶ In [2]: torch.rand(14) Out[2]: tensor([0.3614, 0.6932, 0.3986, 0.0717, 0.4612, 0.3320, 0.3733, 0.9937, 0.1960, 0.5579, 0.0481, 0.1131, 0.4117, 0.0707]) torch.Size([14, 1]) 실데이터 확인¶ In [3]: torch.rand(14,1) Out[3]: tensor([[0.3119], [0.2978], [0.8179], [0.8675], [0.2603], [0.6444], [0.9550], [0.8595], [0.9938], [0.8488], [0.9781], [0.2936], [0.7469].. 2023. 4. 8.
python show image with polygon, 파이썬 이미지 폴리곤하고 같이 그리기 python show image with polygon, 파이썬 이미지 폴리곤하고 같이 그리기 pillow와 matplotlb을 이용하여 그림위에 폴리곤을 그리는 방법은 아래 코드와 같습니다. from PIL import Image, ImageDraw import matplotlib.pyplot as plt # Open the image image = Image.open('image.jpg') # Create a new image with the same size as the original image poly_image = Image.new('RGBA', image.size, (0, 0, 0, 0)) # Draw the polygon on the new image draw = ImageDraw.Draw.. 2023. 4. 7.
ul, li 바둑판 grid/ ul, li 그리드 / grid-template-columns ul, li 바둑판 grid/ ul, li 그리드 컬럼이 5개 한컬럼단 폭인 200px인 그리드 코드 예시는 아래와 같습니다. HTML 삽입 미리보기할 수 없는 소스 2023. 4. 6.
플라스크 시작하기 flask hello world, hello flask, hellp python flask hello world, hello flask, hellp python from flask import Flask app = Flask(__name__) @app.route('/') def main(): return 'hello world' if __name__ == '__main__': app.run(host="0.0.0.0", port=8060) HTML 삽입 미리보기할 수 없는 소스 2023. 4. 6.