码迷,mamicode.com
首页 >  
搜索关键字:python练习    ( 581个结果
Python Challenge 过关心得(0)
最近开始用Openerp进行开发,在python语言本身上并没有什么太大的进展,于是决定利用空闲时间做一点python练习。 最终找到了这款叫做Python Challenge(http://www.pythonchallenge.com)的编程游戏。 这款游戏年代十分久远了,不过据说题目难度到后....
分类:编程语言   时间:2015-07-28 17:20:01    阅读次数:156
提取网址的python练习
import urllib, urllib2, cookielibfrom HTMLParser import HTMLParserimport sysreload(sys)sys.setdefaultencoding('utf8')class WebParser(HTMLParser): d...
分类:编程语言   时间:2015-07-23 19:07:45    阅读次数:123
python练习n2进程
#-*-coding:cp936-*-importtime,threading,logginglogging.basicConfig(level=logging.DEBUG,format='(%(threadName)-10s)%(message)s',)defde():logging.debug(...
分类:编程语言   时间:2015-07-16 16:04:13    阅读次数:152
Python练习册0-9
Python练习册0-9By 白熊花田(http://blog.csdn.net/whiterbear) 转载需注明出处,谢谢。这段时间在家做了点Python练习册里的题目,里面的题目都不是很难,但是做起来还是要费点时间的,适合熟悉python的使用。这里先给出前十道题的解答思路和代码。第 0000 题:将你的 QQ 头像(或者微博头像)右上角加上红色的数字,类似于微信未读信息数量那种提示效果。...
分类:编程语言   时间:2015-07-15 13:15:05    阅读次数:259
python 练习题
1.知道了一些图书的信息,找出其中最小的价格:#!/usr/bin/pythonbooks=[ {"name":"abc","price":23.3,"store":u"xinhu"}, {"name":"win","price":12.3,"store":"kk"}, ...
分类:编程语言   时间:2015-06-15 23:25:21    阅读次数:179
Python练习2->Get Abs
1 def my_abs(x):2 if x>=0:3 return x4 else:5 return -x6 7 z=int(raw_input("Please Input The Number You Want To Get Abs: "))8 ...
分类:编程语言   时间:2015-05-30 13:28:03    阅读次数:155
Python练习3->阶乘
1 def fact(n):2 if n==1:3 return 14 return n*fact(n-1)5 6 n=int(raw_input("Please Input The Number of N: "))7 print fact(n)
分类:编程语言   时间:2015-05-30 13:27:03    阅读次数:140
十分钟学习Python的进阶语法
一:起因 (1)作为胶水语言的Python,可谓无处不在,快速开发原型网站;大数据处理等领域应用甚广 (2)学过c/c++ 或者 Java的ITers 很容易学习Python,特别是对于上手入门级的Python语法 (3)刚刚开始学习Python,练习Python时,可能感觉特别别扭 —— 完全没有方法{} ,近几年靠:和严格的缩进来进行代码段,程序段的分隔 二:Python 进阶语言...
分类:编程语言   时间:2015-05-27 10:06:38    阅读次数:184
python练习2
hello.py#!/usr/local/bin/python3.4count=0while(count<9): print('the count is:',count) count=count+1;print('good bye!')运行:./hello.py
分类:编程语言   时间:2015-05-13 12:20:01    阅读次数:131
python练习1
vim hello.py#!/usr/local/bin/python3.4str=input('pls intput same message:');print('you had enterd the string:'+str);运行:完。
分类:编程语言   时间:2015-05-12 15:06:19    阅读次数:130
581条   上一页 1 ... 52 53 54 55 56 ... 59 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!