1、Python是解释型语言。
2、在python解释器下,下划线"_"存储了上次计算的结果。
3、关于print的写法:print("Hi!")是Python2和3的,print "Hi!"是Python2的。
4、程序退出的方法:*nix(Ctrl+D)、Windows(Ctrl+Z)、程序中(raise SystemExit异常)
5、每一行算一条语句,如果要一行中表示多条,用分号";"分割。
6、Block靠缩进识别(一般为4个空格),没有花括号。
7[......]
1、Python是解释型语言。
2、在python解释器下,下划线"_"存储了上次计算的结果。
3、关于print的写法:print("Hi!")是Python2和3的,print "Hi!"是Python2的。
4、程序退出的方法:*nix(Ctrl+D)、Windows(Ctrl+Z)、程序中(raise SystemExit异常)
5、每一行算一条语句,如果要一行中表示多条,用分号";"分割。
6、Block靠缩进识别(一般为4个空格),没有花括号。
7[......]
对于Clubuptime无语了,肯定是这台母鸡又被国人占领了,模板的Locale居然被设置成了GBK。。。。。。
导致python部署webpy时候出现如下诡异的错误:
if sys.getdefaultencoding() != 'utf-8':
<type 'exceptions.UnicodeDecodeError'> at /
'ascii' codec can't decode byte 0xe4 in position 44: ordinal no[......]
摘录自官网:
Perhaps the most common misconception about Django is that it’s a content management system. It’s not. It’s a web framework. It is a tool in which to build a CMS, like Drupal or other systems, but not one in itself.
原来Django的初始目的是建一个CMS站[......]
http://blogfreakz.com/django/django-tutorials/[......]
转载自:http://degizmo.com/2010/03/22/getting-started-redis-and-python/
So if you have been following NoSQL movement, the migration of some types of data to non-relational datastores has recently picked up speed. For web (and other developers) this ha[......]