Am fairly new to python, We have an interesting situation.
We want to read a char from stdin, store the char, and display another char.
example: the user enters 'c', the code is expected to save 'c' and print 'v' (instantaneously)
although getpass.getpass
saves the input but it print nothing.
Am using Python 2.7 running on mac.