Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2017.02.02 on home





day1   python基础教程札记-项目1-即时标记-Day1
http://www.echojb.com/perl-python/2016/08/11/109023.html

day2
http://www.echojb.com/perl-python/2016/08/11/108923.html

day3
http://www.echojb.com/perl-python/2016/08/11/109022.html

day4
http://www.echojb.com/perl-python/2016/08/11/109032.html









python基础教程笔记-项目1-即时标记-Day1
http://www.bkjia.com/Pythonjc/949728.html


python基础教程笔记-项目1-即时标记-Day3,python-day3
http://www.bkjia.com/ASPjc/948533.html

python基础教程笔记—即时标记(详解)
http://www.cnblogs.com/isuifeng/p/5839748.html


不错的教程 真的
 python基础教程第2版 20 项目1:即时标记






re 笔记

一个括号是一个group....这个group匹配了3次,一个group的每一次匹配覆盖上一次的匹配结果..
https://www.douban.com/group/topic/22427337/



python基础教程 相关的都有哦
http://www.cnblogs.com/zxqstrong/tag/python/default.html?page=2








python基础教程笔记-项目1-即时标记-Day3

http://www.aichengxu.com/view/1837253



在 FreeBSD 下使用大于 2TB 的硬盘(使用 GPT)

一、首先确定 Kernel 有 options GEOM_GPT

二、用gpt分区使用的命令

    gpt create -f /dev/da1
    gpt add -t ufs /dev/da1
    gpt label -a -l big /dev/da1
    newfs -U -O 2 -b 65536 -f 8192 /dev/da1p1
    mkdir /big
    mount /dev/da1p1 /big

http://www.92csz.com/54/993.html


******************************************

现在手工打这个哦  参考 src20的里面有很多说明呢
怎样学 Python
https://www.zhihu.com/question/20219414

http://www.cnblogs.com/zxqstrong/p/4676001.html
目前最好的教程详解了 by 20161108
python基础教程笔记-项目1-即时标记-Day1 
http://blog.csdn.net/miaoyunzexiaobao/article/details/43088495

上面的被封了,只能看快照   放在eg 目录
像这个样子google 
python基础教程笔记-项目1-即时标记-Day4


 progress 
 day3  20161126am



作者简介
Magnus Lie Hetland is an experienced Python programmer, having used the language since the late 1990s. He is also an associate professor of algorithms at the Norwegian University of Science and Technology, having taught algorithms for the better part of a decade. Hetland is the author of Practical Python and Beginning Python, first and second editions, as well as several scientific papers.

目录
Ch. 1 Instant hacking : the basics

Ch. 2 Lists and tuples

Ch. 3 Working with strings

Ch. 4 Dictionaries : when indices won't do

Ch. 5 Conditionals, loops, and some other statements

Ch. 6 Abstraction

Ch. 7 More abstraction

Ch. 8 Exceptions

Ch. 9 Magic methods, properties, and iterators

Ch. 10 Batteries included

Ch. 11 Files and stuff

Ch. 12 Graphical user interfaces

Ch. 13 Database support

Ch. 14 Network programming

Ch. 15 Python and the Web

Ch. 16 Testing, 1-2-3

Ch. 17 Extending Python

Ch. 18 Packaging your programs

Ch. 19 Playful programming

Ch. 20 Project 1 : instant markup

Ch. 21 Project 2 : painting a pretty picture

Ch. 22 Project 3 : XML for all occasions

Ch. 23 Project 4 : in the news

Ch. 24 Project 5 : a virtual tea party

Ch. 25 Project 6 : remote editing with CGI

Ch. 26 Project 7 : your own bulletin board

Ch. 27 Project 8 : file sharing with XML-RPC

Ch. 28 Project 9 : file sharing II - now with GUI!

Ch. 29 Project 10 : do-it-yourself arcade game