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

原文地址:https://www.cnblogs.com/liyou-blog/p/4499983.html