python练习2

hello.py

#!/usr/local/bin/python3.4

count=0
while(count<9):
        print('the count is:',count)
        count=count+1;
print('good bye!')

运行:./hello.py

 

posted @ 2015-05-13 11:43  liyou  阅读(123)  评论(0编辑  收藏  举报