负责发带

文章
4
资源
0
加入时间
2年10月17天

fluent python epub_Fluent Python 笔记(一):数据模型

目录:前段时间(年前)撸完了 Fluent Python,感觉非常不错,大概是看过的 Python 教材中最好的一本了。想整理一下,由于工作比较忙(懒)一直没时间,现在稍微总结一下(挖个坑)。首先看两个很酷的例子:1. 用 Python 表示一副扑克牌import collectionsCard = collections.namedtuple('Card', ['rank', 'suit'])c...

SSM框架笔记13:Spring MVC基础

vitalflux.com对2014-2015年度10佳Web框架排名,没有Struts2的身影,前五名为:1、Spring MVC2、Grails3、Play4、Spring Boot5、VaadinSpring MVC 是目前Java Web框架当之无愧的霸主(hegemon)。一、Spring MVC概述MVC:Model + View + Controller (数据模型+视图+控制器)三...