自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(33)
  • 资源 (5)
  • 收藏
  • 关注

转载 The Elements of Programming Style

http://reprog.wordpress.com/2010/03/06/programming-books-part-2-the-elements-of-programming-style/The Reinvigorated ProgrammerEverything except sauropod vertebraeSkip

2014-11-29 16:36:37 1742

原创 What is the single most influential book every programmer should read?--From Stackflow

http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1713#1713Code Complete (2nd edition) by Steve McConnellThe Pragmatic Program

2014-11-28 15:56:48 576

原创 The element style--Rule 1 to 5

1. Form the possessive singular of nouns by adding's (no matter whatever the final consonant)EX:Burns's poemsthe witch's maliceCharles's friendException: possessives of ancient proper

2014-11-27 13:15:13 427

原创 Floating Point IEEE745

Just remember, even though the printed result looks like the exact value of 1/10, the actual stored value is the nearest representable binary fraction.

2014-11-21 15:42:34 342

原创 与Python相关的视频---电影、视屏等----待不断添加

1.  创始人介绍 Histroy of Python: http://v.youku.com/v_show/id_XNTExOTc1NTU2.html

2014-11-20 11:07:00 594

转载 每个程序员都应读的30本书

1. 《代码大全》史蒂夫·迈克康奈尔推荐数:1684“优秀的编程实践的百科全书,《代码大全》注重个人技术,其中所有东西加起来,就是我们本能所说的“编写整洁的代码”。这本书有50页在谈论代码布局。” —— Joel Spolsky对于新手来说,这本书中的观念有点高阶了。到你准备阅读此书时,你应该已经知道并实践过书中99%的观念。– esac2. 《程序员修炼之

2014-11-19 20:18:50 462

原创 Argument Passing----Learning Python

Arguments are passed by assignment

2014-11-18 14:23:26 540

原创 Scopes-----Learning Python

1. Scopes: the places where varia

2014-11-18 10:48:46 468

原创 Functions Basics------Learning Python

1. Function is a device that groups a set of statements so they can be run more

2014-11-18 10:10:13 447

原创 喜爱的淘宝店-不断添加更新

1. 文艺清新范:OPT http://opt.tmall.com/shop/view_shop.htm?spm=a1z0d.6639537.1997196601.51.nwGrqI&user_number_id=3264979182. pass

2014-11-18 08:50:02 422

原创 while and for Loops--Learning Python-Chapter 13

While:while test: # Loop teststatements # Loop bodyelse: # Optional elsestatements # Run if didn't exit loop with break

2014-11-15 21:50:32 473

原创 if Tests and Syntax Rules--Learning Python chapter12

1. if : compound statements-statements embed other statements2. if is a primary selection tool in P

2014-11-15 21:17:29 416

原创 Expressions, and Prints-Learning Python-Chapter 11

1. In Python, you can use an expression as a statement, too—that is, on a line by itself.

2014-11-15 20:12:07 454

原创 Assignments-Learning Python Chapter 11

1. Assignment statement:   Target of an assignment on the left, and obj

2014-11-15 19:20:50 741

原创 Introducing Python Statements---Learning Python Chapter10

1. Statements(语句): the thins you tell Python what your programs should do.

2014-11-15 18:29:38 602

转载 Python输入输出(IO)

zhttp://www.cnblogs.com/livingintruth/p/3264001.htmlPython输入输出(IO)程序会有输入和输出,输入可以从标准输入或是从一个文件读入数据,程序的输出可以以一种友好可读的方式(human-readable)打印出来,或是写进一个文件,而标准输入和标准输出(键盘和显示器)在程序的角度也是文件,所以程序的输入输出就是

2014-11-14 14:05:32 458

原创 死亡诗社 里的诗歌

O Me! O Life!         by Walt Whitman      O Me! O life!... of the questions of these recurring;   Of the endless trains of the faithless—of cities fill’d with the foolish;   Of myself f

2014-11-13 20:47:19 1031

原创 Data Type of String

1. String Literals: single quotes, double quotes, triple quotes, escape sequences, raw literals,etc.2.

2014-11-12 21:43:50 471

原创 General Type Categories_Learning Python

Three major types:Numbers(integer,floating-point,decimal,fa

2014-11-12 21:29:40 419

原创 Dynamic Type of Python-Part 2-Learning Python

Types Live with Objects, Not Variables

2014-11-11 20:38:54 440

原创 Dynamic Type of Python-Part 1-Learning Python

1. Variables,objects and referencesVariable creation:A variable (i.e.,name),like a

2014-11-11 20:11:04 447

原创 Always look at the bright side of life_Monty Python

Some things in life are badThey can really make you madOther things just make you swear and curse.When you're chewing on life's gristleDon't grumble, give a whistleAnd this'll help things tu

2014-11-11 19:59:55 1266

原创 Numeric Type -Learning Python

variable doesn't need to be predeclared in Python, but they must have been assigned at least

2014-11-11 12:14:11 503

原创 Learning Python-Concept of sequence,mapping and polymorphism

1. Sequence is a positionally ordered collection of objects. Strings,lists,and tuples are all sequences in Py

2014-11-11 10:44:36 376

原创 learning Python- types

Programs are composed of modulesModules contain statementsStatements contain exp1. numerical

2014-11-10 22:26:58 500

原创 learning Python-Tuple and files

1. Immutable2. ordered sequences

2014-11-10 21:52:45 411

原创 learning Python-Dictionaries

1. Like mapping: map values to keys(not by position)the only mapping type in Python

2014-11-10 20:55:15 473

原创 Learning Python-List Operation

1. List is the most general sequence provided by the language.mu

2014-11-10 20:24:23 808

转载 Monty Python_From Wikipedia

http://en.wikipedia.org/wiki/Monty_PythonMonty PythonFrom Wikipedia, the free encyclopedia"Pythonesque" redirects here. For the play by Roy Smiles, see Pyth

2014-11-10 19:53:50 4973

转载 阿特拉斯耸耸肩:安兰德献给人类的启蒙教育

阿特拉斯耸耸肩:安兰德献给人类的启蒙教育2014-11-02 安兰德书友会1957年,《阿特拉斯耸耸肩》首次由兰登书屋出版。据说,这部小说当时已被12家出版社退稿,出版以后,恶评如潮但畅销无比,对美国大众的影响仅次于《圣经》,作者也因该书几乎激怒了整个成人世界:父亲、母亲、左派知识分子、自由主义者和保守主义者。他们贬低她:“只有十几岁的青少年醉心于她的学说。”咒骂她

2014-11-07 22:02:27 1038

原创 什么是真相

如果是truth,那么只要自己能够证明,并且经得起检验,那么便没有理由和人争论。因为能够虚心听取他人看法的人极其稀少。与其争论,不如把精力放在追求truth上面。将这点看开,放下,我便与真理更近了一步。是不是真理和大众的看法并没有大的关系,生活在他人的看法下,无非是把自己囚禁在了肖申克监狱。肖申克的救赎更近了一步,然而枷锁并不止于此。

2014-11-07 21:25:38 503

原创 “怎样解题”-第二部分:怎样题解——作者:波利亚

第二部分:一段对话:1. 熟悉题目:1) 应该从nali

2014-11-06 13:32:25 496

原创 Naming Variables-From "Code Complete"

Naming Variables Checklist:1.

2014-11-04 21:30:39 347

数据科学实战

数据科学实战,高清版,非常好,概念非常清晰~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

2018-01-22

an introduction to bootstrap

an introduction to bootstrap

2015-03-18

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除