
记事本
liu_jie_1
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
python 掌握之路(二)
#use case 16:use listclassMates=['jie_liu','hongWei_Hong','PanPan','Bang_Wu',"hui_Tang",'Lu_Zhu','XueLong_Su'];for i in range(len(classMates)): print classMates[i];classMates.append('Yu_Chen')原创 2016-01-07 21:49:16 · 508 阅读 · 0 评论 -
python 掌握之路(一)
#!/usr/bin/env python# -*- coding: utf-8 -*-# use case 1: the first python programprint "hello world";# use case 2: the second python program : use keyword :forfor i in range(10): print str原创 2016-01-07 20:40:26 · 358 阅读 · 0 评论