计数的python代码
时间: 2023-10-12 15:18:39 浏览: 52
python计数图代码
以下是一个简单的计数器程序的Python代码:
```python
count = 0
while True:
print("Count: ", count)
count += 1
user_input = input("Press 'q' to quit or any other key to continue: ")
if user_input == 'q':
break
```
此程序使用一个无限循环,每次循环都会打印计数器的当前值并将其增加1。然后,程序会提示用户输入一个键,如果用户输入的是“q”,则程序会退出循环并终止。否则,程序将继续循环并增加计数器的值。
阅读全文