- 博客(5)
- 收藏
- 关注
转载 SQLAlchemy基本技巧
from sqlalchemy import Column, String, create_engine,Float,Integer,DateTime,funcfrom sqlalchemy.orm import sessionmakerfrom sqlalchemy.ext.declarative import declarative_base from sqlalchemy impor
2017-06-15 15:32:04 329
转载 with关键字用法详解
1.定义 Python’s with statement provides a very convenient way of dealing with the situation where you have to do a setup and teardown to make something happen. A very good example for this is the situ
2017-06-12 17:59:28 1560
转载 linux计划任务crontab
1. crontab命令选项代码如下:#crontab -u -u指定一个用户-l列出某个用户的任务计划-r删除某个用户的任务-e编辑某个用户的任务2. cron文件语法与写法可用crontab -e命令来编辑,编辑的是/var/spool/cron下对应用户的cron文件,也可以直接修改/etc/crontab文件。具体
2017-06-12 17:52:49 757
转载 vim命令大全
转载于http://blog.csdn.net/scaleqiao/article/details/45153379曾经使用了两年多的Vim,手册也翻过一遍。虽然现在不怎么用vim了,曾经的笔记还是贴出来,与喜欢vim的朋友分享。1. 关于Vimvim是我最喜欢的编辑器,也是Linux下第二强大的编辑器。 虽然emacs是公认的世界第一,我认为使用emacs并没
2017-06-12 16:58:46 375
转载 python抽象类
转载 于http://blog.csdn.net/lis_12/article/details/53842299抽象基类要定义抽象基类,需要使用abc模块。该模块定义了一个元类(ABCMeta)和一组装饰器@abstractmethod,@abstractproperty。可以按如下方式使用from abc import ABCMeta,abstractmethod,abs
2017-06-12 16:39:46 1416
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人