发布一个在线版的python ide / shell : Py I/O

http://ihere.appspot.com/2009/06/web-python-ide-pyio-release.html

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
a=[3, 1, 4, 1, 5, 9, 2, 6, 5, 3, 5, 8, 9, 7, 9, 3]

def qsort(L):
if L == []: return []
return qsort([x for x in L[1:] if x< L[0]]) + L[0:1] + qsort([x for x in L[1:] if x>=L[0]])

print qsort(a)

还有经典的Hello World!

print 'Hello World!'
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值