感谢有人能帮助我。
#!/usr/bin/python
lenlist = 9
while lenlist <= 0:
print "hello"
lenlist -= 1
请您参考如下方法:
这会起作用:
lenlist = 9
while lenlist >= 0:
print "hello"
lenlist -= 1
感谢有人能帮助我。
#!/usr/bin/python
lenlist = 9
while lenlist <= 0:
print "hello"
lenlist -= 1
请您参考如下方法:
这会起作用:
lenlist = 9
while lenlist >= 0:
print "hello"
lenlist -= 1