PRACTICE48 [Python] 거스름돈 계산 12345678910m = 1260 #돈count = 0 #동전 갯수 coin_types = [500, 100, 50, 10] for coin in coin_types: count += m // coin m %= coin print('동전 갯수:',count) 2021. 3. 2. [Python] 수행시간 측정 코드 - time.time() 12345678910import time start_time = time.time() #측정 시작 '''프로그램 소스코드''' end_time = time.time() #측정 종료print("time: ", end_time - start_time) #수행 시간 출력 2021. 3. 2. [Flask] SQLAlchemy 사용하여 학생테이블 출력하기 app.py파일을 실행하면 student_info.db 파일이 생성된다. 12345678910111213141516171819202122!DOCTYPE html>html> body> h3>Students - Flask SQLAlchemy example/h3> hr/> form action = "{{ request.path }}" method = "post"> label for = "name">Name/label>br> input type = "text" name = "name" placeholder = "Name" />br> label for = "city"">City text" name = "city" pl.. 2020. 11. 25. [Flask] 로그인 페이지, 로그인 성공 시 flash 메시지 출력하기 123456789101112131415161718192021!doctype html>html> head> title>Flask Message flashing/title> /head> body> {% with messages = get_flashed_messages() %} {% if messages %} ul> {% for mes in messages %} li>{{ mes }}/li> {% endfor %} /ul> {% endif %} {% endwith %} h1>Flask Message .. 2020. 11. 25. [Flask] input값에 따라 Pass, Fail 문자 출력하기 12345678910!doctype html>html> body> {% if marks>50 %} h1> Your result is pass!/h1> {% else %} h1>Your result is fail/h1> {% endif %} /body>/html> 123456789from flask import Flask, render_templateapp = Flask(__name__) @app.route('/input/')def input_name(score): return render_template('result.html', marks = score) if __name__ == '__main__': app.run(host='0.. 2020. 11. 24. [Python] 삼각형 넓이 구하기 123456width = int(input('width: '))height = int(input('height: ')) area = width * height / 2 # /는 소수점, //는 정수형으로 계산함. print('area: ', area) 2020. 11. 23. [Python, OpenCV] 두 개의 이미지 파일 합성하기 12345678910111213141516171819202122232425262728293031# apple.jpg 그림에 opencv_logo 그림을 Mask_inverse하여 합성. import cv2import numpy as np src1 = cv2.imread('../data/apple.jpg') #사과파일 읽기src2 = cv2.imread('../data/opencv_logo.png') #로고파일 읽기 rows, cols, channels = src2.shape #로고파일 픽셀값 저장roi = src1[50:rows+50,50:cols+50] #로고파일 필셀값을 관심영역(ROI)으로 저장함. gray = cv2.cvtColor(src2, cv2.COLOR_BGR2GRAY) #로고파일의 색상을.. 2020. 11. 11. 이전 1 2 3 4 5 6 7 다음