码迷,mamicode.com
首页 >  
搜索关键字:python list tuple    ( 183691个结果
Python-同时匹配邮箱和电话号码的正则表达式
同时匹配邮箱和电话号码的正则表达式要想很完美的匹配,不太简单。各邮箱提供商的标准都多少有些许差别。如:163:6-18个字符,可使用字母、数字、下划线,需以字母开头。gmail:可以使用字母、数字和英文句点,不能使用除字母 (a-z)、数字和英文句号外的其他字符,下划线也是不可以的。yahoo:4至...
分类:编程语言   时间:2014-05-08 19:11:53    阅读次数:601
centos更新python
第1步:更新gcc,因为gcc版本太老会导致新版本python包编译不成功yum -y install gcc 第2步:下载Python-3.3.0软件包第3步:解压已下载的二进制包并编译安装#tar -jxvf Python-3.3.0.tar.bz2#cd Python-3.3.0#./conf...
分类:编程语言   时间:2014-05-08 18:56:20    阅读次数:390
代码注释率统计的Python及Java实现
这是一个简单的Java代码注释率统计工具,能够查找某个指定目录下的每个.java文件注释率及该路径下所有.java文件的总注释率。注释率=注释代码行数/代码总行数,其中代码总行数包括注释行和空格行。在Java中有行注释(//)、块注释(/*……*/)和Javadoc注释(/**……*/)三种风格,通...
分类:编程语言   时间:2014-05-08 14:34:05    阅读次数:616
重写Html.DropDownList和Html.DropDownListFor的name属性
□ 重写前 通常这样写: @Html.DropDownListFor(m => m.DelFlag,(List □ 重写后 重写name属性: @Html.DropDownListFor(m => m.DelFlag,(List 注意: 如果写成new {id="dd",name="myName"}...
分类:Web程序   时间:2014-05-08 13:29:01    阅读次数:532
meta program (1) swap_iter
开始学习模板元编程了 #include #include #include #include #include "boost/assign/list_of.hpp" #include "boost/type_traits/is_const.hpp" #include "boost/type_traits/is_reference.hpp" #include "boost/type_tr...
分类:其他好文   时间:2014-05-07 16:32:27    阅读次数:358
中文分词——正向最大匹配法
中文分词应用很广泛,网上也有很多开源项目。我在这里主要讲一下中文分词里面算法的简单实现,废话不多说了,现在先上代码 package com; import java.util.ArrayList; import java.util.List; public class Segmentation1 { private List dictionary = new ArrayList(); ...
分类:其他好文   时间:2014-05-07 16:30:27    阅读次数:317
codechef Chef and The Right Triangles 题解
Chef and The Right Triangles The Chef is given a list of N triangles. Each triangle is identfied by the coordinates of its three corners in the 2-D cartesian plane. His job is to figure out how m...
分类:其他好文   时间:2014-05-07 16:28:35    阅读次数:314
python数据结构与算法 37 树的实现
树的实现 记住上一节树的定义,在定义的基础上,我们用以下的函数创建并操作二叉树: BinaryTree() 创建一个二叉树实例 getLeftChild() 返回节点的左孩子 getRightChild() 返回节点的右孩子 setRootVal(val) 把val变量值赋给当前节点 getRootVal() 返回当前节点对象。 insertLeft(val) 创建一个新二叉树作为当前...
分类:编程语言   时间:2014-05-07 15:58:43    阅读次数:504
python获取微信公共平台消息列表和用户头像
模拟登陆的方式从获取微信公众平台消息列表和用户头像的库,之后还会继续增加相关功能,github地址https://github.com/btyh17mxy/wxwall...
分类:微信   时间:2014-05-07 15:05:43    阅读次数:761
python tkinter学习
Downloading the module:sudo apt-get install python-tksimple example:#!/usr/bin/python# -*- coding: utf-8 -*-"""ZetCode Tkinter tutorialThis script sho...
分类:编程语言   时间:2014-05-07 14:46:05    阅读次数:454
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!