码迷,mamicode.com
首页 > 其他好文 > 详细

在Pycharm编辑器中调用getpass模块

时间:2017-03-18 11:07:49      阅读:1943      评论:0      收藏:0      [点我收藏+]

标签:python   import   getpass模块   python3   pycharm   

  兴趣来潮想复习一下python中的getpass模块编辑器使用Pycharm很简单的代码写完执行不到输入部分代码如下

import getpass
print("""
 --------------------**************-----------------
""")
#ss=getpass.getpass(‘please The password:‘)
p = getpass.getpass(‘input your password:‘)
print(s)

执行结果

C:\Users\Administrator\AppData\Local\Programs\Python\Python35\python.exe C:/Users/Administrator/PycharmProjects/s14/helloword.py
 --------------------**************-----------------

  但是事与愿违并没有出现理想的状况 input your password:   ,由于初学python所以始终自己哪里敲错了检查了几遍没有错误同时执行的时候没有任何的报错就想着是不是编辑器的原因

于是在Windows的命令行执行以上代码出现了预期的结果

C:\Users\Administrator>python
Python 3.5.2 (v3.5.2:4def2a2901a5, Jun 25 2016, 22:18:55) [MSC v.1900 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import getpass
>>> p=getpass.getpass(‘input your password:‘)
input your password:
>>> print(p)
88
>>> p=getpass.getpass(‘input your password:‘)
input your password:
>>> print(p)

  在其他工具下执行也出现了预期的结果于是就比较纳闷了开始百度和各种找资料最后发现Pycharm竟然不支持getpass模块。

技术分享


在Pycharm编辑器中调用getpass模块

标签:python   import   getpass模块   python3   pycharm   

原文地址:http://dreamlinux.blog.51cto.com/9079323/1907763

(1)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!