python3
Python 3.4.3 (default, Nov 12 2018, 22:20:49)
>>> input()
123
'123'
>>> input("请输入银行密码")
请输入银行密码123456
'123456'
>>> password = input("请输入银行密码")
请输入银行密码123456
>>> password
'123456'
>>> print(password)
123456
>>> type(password)
<class 'str'>
>>> age = input("请输入您的年龄")
请输入您的年龄18
>>> age
'18'
>>> type(age)
<class 'str'>