
python base Knowlage
文章平均质量分 78
Magicfrogman
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Django 为什么不叫MVC框架,官方给出了回答。
Django appears to be a MVC framework, but you call the Controller the “view”, and the View the “template”. How come you don’t use the standard names?¶ Well, the standard names are debatable. In our原创 2018-01-31 17:08:50 · 1597 阅读 · 0 评论 -
sqlalchemy ~orm 介绍
# -*- coding: utf-8 -*- """ Created on Wed Aug 15 13:59:37 2018 sqlalchemy 学习 本例中采用内存中的sql-lite数据库 @author: Administrator """ #建立引擎 engine = create_engine('sqlite:///:memory:',echo=True) """ echo 是...原创 2018-08-15 16:02:19 · 400 阅读 · 0 评论 -
winpython 中的python console (py 控制台) 被移除了
1年前过度到3.0py的时候就遇到了这个问题,一直没心思解决,想着只要环境变量搞定了就完了,结果今天觉得为什么这么舒服的功能没了呢,找了网上的回答,发现早就被cut了 卡洛斯同志是spyder的维护人员。 自3.20以后都没有这东西了,至于为什么也给了篇文章 说了这么多,反正就是同时在一个产品中维护2个控制台是非常麻烦的事情,所以总不是阉割了ipython吧 反正ipython可以...原创 2019-03-16 20:03:07 · 798 阅读 · 0 评论