#!/usr/bin/env python # -*- coding:utf-8 -*- import getpass ''' 调用该函数可以在命令行窗口里面无回显输入密码 ''' password = getpass.getpass("请输入密码:") print(password)