Python里怎么实现do while_百度知道
最佳答案: python 中while循环用法 #!/usr/bin/pythoncount = 0while (count < 9): print 'The count is:', count count = count + 1print "Good bye!"...更多关于Python里怎么实现do while?的问题>>
为什么Python没有do while语句_百度知道
最佳答案: 这个估计得从python的设计理念说起了,估计他们认为for,while, do while都是一样的东西,循环只要一个就够了。 顺便,以下是Python的设计哲学,仅供参考。 ...更多关于Python里怎么实现do while?的问题>>