自学记录: 1.字符串 python中单引号和双引号使用完全相同. 使用三引号('''或""")可以指定一个多行字符串. 转义符 '\' 反斜杠可以用来转义,使用r可以让反斜杠不发生转义.. 如 r"this is a line with \n" 则\n会显示,并不是换行. 按字面意义级联字符串,如"this " "is " "string"会被自动转换为this is string. 字符串可以…
问题:求列表中每个元素的元素次方之和>>> a=[1,2,3,4]>>> k=len(a)第一种解法# s=0# for x in a:# s+=x**k第二种解法列表解析,每个元素的元素数次方>>> [x**k for x in a][1, 16, 81, 256] 求列表元素之和>>> sum([x**k for x in a])354 水仙花数 一.先在python交互式中寻找算法>>>…
1.TEMPLATE_DIRS relative to the project folder http://stackoverflow.com/questions/9856683/using-pythons-os-path-how-do-i-go-up-one-directory When developing with Django we need to specify our templates directory inside the settings.py with the TEMPLA…