python练习2
时间:2015-05-13 12:20:01
收藏:0
阅读:131
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
评论(0)