等待输入而不中断循环

时间:2018-03-11 17:01:43

标签: python windows python-3.x

首先,我使用Windows,因此我无法在Windows中使用curses。 我正在尝试在ASCII动画循环时创建一个登录界面。

def animation():
    while True:
        #something that do animation

def login_screen():
    uname = str(input("Username : "))
    passw = str(input("Password : "))
    print("Welcome {}".format(uname))

那么如何在一个控制台屏幕上执行此操作?这是例如: What i want to do

0 个答案:

没有答案