我一直在尝试在 python 2.7 中制作自己的基于文本的 UI,但我想到了关于输入的想法。所以我想出了这样input = raw_input("|" + "input: ".center(78) + "|")
的东西:,但是粗略,光标在右边很远(只是意识到它在我输入它之前不起作用:P)。所以,问题是,我如何在屏幕中间放置一个输入,文本在同一行(两侧),并在我写下“输入:”后有光标类型?如果您想知道,我正在使用这个:
if True:
print c + "Hi! This is a text-based GUI!".center(78, h) + c
print c + "-" * 78 + c
print v + "OPTIONS".center(78) + v
print c + "-" * 78 + c
print v + "1 - Quit".center(78) + v
for i in range(1, 7):
print v + " " * 78 + v
print c + "-" * 78 + c
在解释器中,它看起来不错:
+------------------------Hi! This is a text-based GUI!-------------------------+
+------------------------------------------------------------------------------+
| OPTIONS |
+------------------------------------------------------------------------------+
| 1 - Quit |
| |
| |
| |
| |
| |
| |
+------------------------------------------------------------------------------+
注意:我使用的是 Windows XP