最佳答案
在我下面的示例代码中,计数器 = 0真的是必需的吗? 还是有更好的、更多的 Python 方法来访问循环计数器?我看到了一些与循环计数器相关的 PEP,但它们要么被延迟,要么被拒绝(PEP 212和 PEP 281)。
这是我的问题的一个简化例子。在我的实际应用程序中,这是用图形完成的,整个菜单必须重新绘制每一帧。但是这种方法以一种简单的文本方式演示了它,这种方式很容易复制。
也许我还应该补充一下,我正在使用 Python 2.5,尽管我仍然对是否有一种特定于2.6或更高版本的方法感兴趣。
# Draw all the options, but highlight the selected index
def draw_menu(options, selected_index):
counter = 0
for option in options:
if counter == selected_index:
print " [*] %s" % option
else:
print " [ ] %s" % option
counter += 1
options = ['Option 0', 'Option 1', 'Option 2', 'Option 3']
draw_menu(option, 2) # Draw menu with "Option2" selected
当运行时,它输出:
[ ] Option 0
[ ] Option 1
[*] Option 2
[ ] Option 3