在开发的项目的时候,你是否经常遇到需要重复编写一些类似的代码,比如是否经常会使用
for、foreach ? 在编写这两个循环语句的时候,你是一个字符一个字符敲还是使用 Visual Studio 提供的Code Snippet
工具自动帮你生成呢?神奇之处 你只需要在代码编辑器中输入for,...
分类:
其他好文 时间:
2014-05-12 16:06:37
阅读次数:
439
#coding:utf8import sys,osdef process(path): for f
in os.listdir(path): fin = open(path+"/"+f,"r") print...
分类:
编程语言 时间:
2014-05-09 12:41:07
阅读次数:
362
# --*-- coding: utf-8 --*--from
matplotlib.font_manager import FontPropertiesimport matplotlib.pyplot as pltfont
= FontProperties(fname=r"/usr/share/f...
分类:
其他好文 时间:
2014-05-09 11:51:09
阅读次数:
323
这篇对应的是习题16,读写文件
# -*- coding: utf-8 -*-
#对文件更多操作复制A文件的内容到B文件
#from sys import argv
from os.path import exists
prompt = "> "
from_file = raw_input("please input the filename where you want to copy...
分类:
编程语言 时间:
2014-05-05 12:54:02
阅读次数:
402
# --*-- coding:utf-8 --*--import distributionimport
matplotlib.pyplot as pltfrom matplotlib.ticker import MultipleLocator#
二项分布举例:将一个硬币抛三次,用随机变量X记录在三次...
分类:
其他好文 时间:
2014-05-04 20:54:51
阅读次数:
512
BeautifulSoup 善于网页数据分析 ,抓取CSDN极客头条内容放入ListView ,
用户点击选择 webViewShow 网页href
geek.py 超过100行,得闲时看吧
# -*- coding: utf-8 -*-
import android
import urllib2, re
from BeautifulSoup import BeautifulSoup
im...
分类:
移动开发 时间:
2014-05-04 09:53:02
阅读次数:
468
中途经过了好几天都没有动手了,得坚持下去啊刚看了Alex老师的视频,其中有个题目如下:编写登录接口-输入用户密码-认证成功后显示欢迎信息-输错三次后锁定#-*-coding:cp936-*-#用户名保存在一个文件名为user.txt文件中importos,stringtmp=file(‘C:\Users\hityxg\Desktop\user...
分类:
编程语言 时间:
2014-05-03 20:33:16
阅读次数:
471
题目
Reverse digits of an integer.
Example1: x = 123, return 321
Example2: x = -123, return -321
Have you thought about this?
Here are some good questions to ask before coding. Bonus points...
分类:
其他好文 时间:
2014-05-03 17:35:30
阅读次数:
345
本文均来自PythonCookbook,本博文励志将Cookbook中的string部位,文件,面向对象编程部分完成,本系列博文陆续还会介绍flask框架,每篇博文都以一个个小例子展示。#-*-coding:utf-8-*-
‘‘‘
检查一个文本是字符串还是二进制
思想:如果字符串中包含了空值或者其中含有超过30%的..
分类:
编程语言 时间:
2014-05-03 00:55:27
阅读次数:
375