login


共有1页, 当前是第1页, 文章总数:2.

Web Python IDE : Py I/O release!发布在线Python IDE : Py I/O !URL :http://py-ide-online.appspot.com/使用Py I/O 你可以:1. 无需安装Python,直接运行python code。 2. 学习python, 体会python 编程的乐趣 :-)3. 分享你的python 代码片段,并评价打分 ;-)4. 完全免费:P包括两种使用方式: 1.交互式shell, 可以逐行运行code,就想本地的python console一样!2.整段运行, 可以写一段代码,然后整个运行查看结果!想直接体会Pythonic 的coding乐趣?试试如下程序吧 [...]

Quick Sort in python

Tuesday, May. 19. 2009 –  Category: Pythonic  –  0 Comments
Tags: python  sort  algorithm 

Quick Sort in pythonhttps://docs.google.com/Doc?docid=dftf9bqn_33c2jqjxg7&hl=en Just wondering how python works with arrays. Here is quick sort algorithm written in Python. Only one line of code: def qsort(L): if L == []: return [] return qsort([x for x in L[1:] if x=L[0]])def qsort(L): if len(L) 1: r [...]


Logo

About Me

  • A Computer Geek in Beijing, China. Focus on Web2.0 Technology: Google App Engine, Python, Django, Software Architecture, Agile, JAVA, J2EE, JavaScript, etc.

    Coding for fun, Coding with passion :-) It's my life!

Most Popular Posts

Tags