[Python] 控制台輸入密碼的方法

來源:互聯網
上載者:User

1. raw_input() :

pwd = raw_input('password: ')
print pwd
# password: aaa
# aaa

Note: 最簡單的方法,但是不安全

 

2. getpass.getpass() :

import getpass
pwd = getpass.getpass('password: ')
print pwd
# password:
# aaaa

Note: 很安全,但是看不到輸入的位元,會讓人覺得有點不習慣,不知道的還以為沒有在輸入..

 

3. msvcrt.getch() : 

代碼import msvcrt, sys

def pwd_input():
    chars = []
    while True:
        newChar = msvcrt.getch()
        if newChar in '\r\n': # 如果是換行,則輸入結束
            print ''
            break
        elif newChar == '\b': # 如果是退格,則刪除末尾一位
            if chars:
                del chars[-1]
                sys.stdout.write('\b') # 刪除一個星號,但是不知道為什麼不能執行...
        else:
            chars.append(newChar)
            sys.stdout.write('*') # 顯示為星號
    print ''.join(chars)

pwd = pwd_input()
print pwd

# ******
# aaaaaa

Note: 解決了第二種方法不能顯示輸入位元的問題,但是如果按退格鍵(backspace)的話,雖然實際的是退格了,

          但控制台卻沒有顯示相應的退格,比如,當前輸入是:abcd,顯示為:****,然後現在打一個退格鍵,實際

          輸入為:abc,而顯示仍為:****。不知道為什麼 sys.stdout.write('\b') 這行沒有執行,估計是和使用

          msvcrt.getch()有關係,如果有人知道為啥請回複一下,3Q~

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.