Masking - 2
Write a program that reads a single line of input and prints the first two and last two characters of the given input and prints the asterisk character (*) in place of the remaining characters.
For example, if the given string is
message, then the first two and last two characters are me, ge. Now replacing all the remaining characters with * will give the output me***ge.
string = input()
if len(string) > 4:
length = len(string) - 4
string = string[:2] + '*'*length + string[len(string)-2:]
print(string)
Comments
Leave a comment