버미다

고정 헤더 영역

글 제목

메뉴 레이어

버미다

메뉴 리스트

  • 홈
  • 태그
  • 방명록
  • 분류 전체보기 (255) N
    • html, css (87) N
    • 서문 (3)
    • python (125)
    • c언어 (13)
    • gpt활용 (1)
    • pymysql (17)
    • SQLD (8)
    • 업무 (1)

검색 레이어

버미다

검색 영역

컨텐츠 검색

python

  • 거북이 게임

    2024.06.14 by bumychoi

  • PING PONG GAME

    2024.06.14 by bumychoi

  • python 집중공부 (유데미 뱀게임 만들기)

    2024.06.14 by bumychoi

  • 중간 코드 확인

    2024.05.20 by bumychoi

  • aggregate 적용 화주 사이즈 별 집계하기

    2024.05.20 by bumychoi

  • 합계 추가 미흡하지만 일단 성공

    2024.05.16 by bumychoi

  • aggregate 몽고디비 연계

    2024.05.16 by bumychoi

  • 작업량연동

    2024.05.16 by bumychoi

거북이 게임

main.pyimport timefrom turtle import Screenfrom player import Playerfrom car_manager import CarManagerfrom scoreboard import Scoreboardscreen = Screen()screen.setup(width=600, height=600)screen.tracer(0)player = Player()car_manager = CarManager()scoreboard = Scoreboard()screen.listen()screen.onkey(player.go_up,"Up")game_is_on = Truewhile game_is_on: time.sleep(0.1) screen.update() car_m..

python 2024. 6. 14. 21:04

PING PONG GAME

main.pyfrom turtle import Screen,Turtlefrom paddle import Paddlefrom ball import Ballfrom scoreboard import Scoreboardimport timescreen = Screen()screen.bgcolor("black")screen.setup(width=800,height=600)screen.title("Pong")screen.tracer(0)r_paddle = Paddle((350,0))l_paddle = Paddle((-350,0)) ball = Ball()scoreboard = Scoreboard()screen.listen()screen.onkey(r_paddle.go_up,"Up")screen.onkey(r_padd..

python 2024. 6. 14. 16:57

python 집중공부 (유데미 뱀게임 만들기)

flask로 웹기본 페이지는 만들었지만 업무에 적용하기 위해서는 서버에서 데이터 가공 능력이 부족하여유데미 python 강의를 듣고 내공을 올리기로함,  main.pyfrom turtle import Screenfrom snake import Snakefrom food import Foodfrom scoreboard import Scoreboardimport timescreen = Screen()screen.setup(width=600, height=600)screen.bgcolor("black")screen.title("m Snake Game")screen.tracer(0)snake = Snake()food = Food()scoreboard = Scoreboard()screen.listen()scree..

python 2024. 6. 14. 13:11

중간 코드 확인

{% extends "main.html" %}{% block contents %}style> html, body, h1, h2, h3, div, span, a, button, table, tbody, thead, input { margin: 0; padding: 0; box-sizing: border-box; } header { background-color: hsl(57, 95%, 60%); } body { min-height: 110%; background-color: hsl(186, 77%, 74%); } .clicked {..

python 2024. 5. 20. 04:15

aggregate 적용 화주 사이즈 별 집계하기

from main import *from flask import Blueprintfrom bson.objectid import ObjectIdbp = Blueprint("freight", __name__, url_prefix='/freight')@bp.route("/")def freight(): d_lists = list(db.mv.find({"cago_name": "철근"})) return render_template("freight.html",d_lists=d_lists,title="철근상세")@bp.route('/d_bar_lists',methods=['GET'])def d_bar_lists(): data = request.args.get('data') d_details = l..

python 2024. 5. 20. 03:32

합계 추가 미흡하지만 일단 성공

{% extends "main.html" %}{% block contents %}style> html, body, h1, h2, h3, div, span, a, button, table, tbody, thead, input { margin: 0; padding: 0; box-sizing: border-box; } header { background-color: hsl(57, 95%, 60%); } body { min-height: 110%; background-color: hsl(186, 77%, 74%); } .clicked {..

python 2024. 5. 16. 20:00

aggregate 몽고디비 연계

{% extends "main.html" %}{% block contents %}style> html, body, h1, h2, h3, div, span, a, button, table, tbody, thead, input { margin: 0; padding: 0; box-sizing: border-box; } header { background-color: hsl(57, 95%, 60%); } body { min-height: 110%; background-color: hsl(186, 77%, 74%); } .clicked {..

python 2024. 5. 16. 13:33

작업량연동

{% extends "main.html" %}{% block contents %}style> html, body, h1, h2, h3, div, span, a, button, table, tbody, thead, input { margin: 0; padding: 0; box-sizing: border-box; } header { background-color: hsl(57, 95%, 60%); } body { min-height: 110%; background-color: hsl(186, 77%, 74%); } .clicked {..

python 2024. 5. 16. 10:27

추가 정보

인기글

최신글

페이징

이전
1 ··· 6 7 8 9 10 11 12 ··· 16
다음
TISTORY
버미다 © Magazine Lab
페이스북 트위터 인스타그램 유투브 메일

티스토리툴바