摘要: 字段名参数意义AutoField一个能够根据可用ID自增的IntegerFieldBooleanField一个真/假(true/false)字段CharField(max_length)一个字符串字段,适用于中小长度的字符串。对于长段的文字,请使用TextFieldCommaSeparatedInt... 阅读全文
posted @ 2015-03-24 14:11 一指禅 阅读(462) 评论(0) 推荐(0) 编辑
摘要: # -*- coding: utf-8 -*-#新手程序员(递归)def factorial(x): if x == 0: return 1 else: return x * factorial(x - 1)print factorial(6)#有一年 Python 经验的程序员... 阅读全文
posted @ 2015-03-24 13:37 一指禅 阅读(546) 评论(0) 推荐(0) 编辑