#!/usr/bin/env python import sys '''简单的购物菜单,根据输入的金额,减去选择的商品得到剩下的金额, 一旦省下的金额小于所有的商品价格,提示余额不…
#!/usr/bin/python2.7 # -*- coding:utf-8 -*- import urllib,urllib2 import re import subproc…
""" python列表切片读取csv数据计算导购客单价.py 题目来源 https://github.com/FGFW/FCNNIC 依山居 19:44 2015/11/22 计…
// demo.cpp : 定义控制台应用程序的入口点。 // #include "Python.h" int add(int a, int b) { return (a+b); …
class JianKong(): '''查询IDC信息,封ip和过白名单''' def __init__(self): pass @classmethod def ip_veri…
import re pattern=re.compile(r'&uuid=.*&') uuidset=set() with open('request.log.20…
#!/usr/bin/python """ 2015.07.07 store all the specified kind of files to the DEST Edit by…
python北京周末培训班 https://github.com/pythonpeixun/article/blob/master/beijing_weekend.md pytho…
#!/usr/bin/env python #coding=utf8 import sys import urllib2 import re def query_magnet(ke…
""" 使用map和reduce实现阶乘求和 x!+(x-1)!+(x-2)!+...+1! x! = x * (x-1) * (x-2) * ... * 1 0! = 1 """…