Notice
Recent Posts
Recent Comments
Link
160x600
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
31 |
Tags
- python기초
- pandas
- sql
- 훈련
- 예측
- 시각화
- python
- 데이터
- 해석
- 데이터베이스
- sklearn
- 데이터 분석
- 데이터전처리
- tensorflow
- HeidiSQL
- 회귀모델
- keras
- 데이터 수집
- 오라클
- 머신러닝
- Oracle
- 파싱 오류
- DB
- 데이터 가공
- pythone
- 정확도
- 딥러닝
- Deep Learning
- Database
- MariaDB
Archives
- Today
- Total
목록jango (1)
코딩헤딩

conda install -c conda-forge PyMySQL 앱 생성 django-admin startapp mysqlapp mysql app에서 - 함수명 index() - HttpResponse("index 페이지입니다.") 출력 - mysqlapp에 urls.py 생성 url패턴 : 127.0.0.1:8080/msql/ * view.py from django.shortcuts import render from django.http import HttpResponse # Create your views here. def index(request) : return HttpResponse("index 페이지입니다.") * urls.py from django.urls import path from ...
카테고리 없음
2024. 2. 6. 13:54