标签: python terminal console command-prompt
如果我指向一个只包含一个index.htm文件的目录,并使用我的控制台并输入nano inde,然后按Tab键,则将其完成为nano index.htm。
nano inde
nano index.htm
在python中,有默认提示符raw_input("Enter some text!"),getpass提供了密码提示getpass.getpass("Enter your password!"),但是还有路径提示符,如上所述?
raw_input("Enter some text!")
getpass.getpass("Enter your password!")