python实现在控制台输入密码不显示的方法

本文实例讲述了python实现在控制台输入密码不显示的方法。分享给大家供大家参考。具体实现方法如下:

import console;
namespace console{
//控制台读取密码,并显示星号
getpassword = function(){
var tstr = {};
var input = kbread(true);
while( input.wvirtualkeycode != 0xd/*_vk_enter*/ ){
if( input.uchar.asciichar ){
..table.push(tstr,input.uchar.asciichar);
if( input.uchar.asciichar > 0x80){
..table.push(tstr,kbread(true).uchar.asciichar);
}
..io.stdout.write(“*”);
}
input = kbread(true);
}
..io.stdout.write(‘\n’);
return ..string.pack(tstr);
}
}
io.open();
io.stdout.write(“请输入密码:”);
var pwd = console.getpassword();
import win;
win.msgbox(pwd,”密码”);

希望本文所述对大家的python程序设计有所帮助。

Posted in 未分类

发表评论